forked from LeonardPoissant/project-module-2-oop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
76 lines (75 loc) · 1.38 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
@font-face {
font-family: leagueFont;
src: url(/Friz-Quadrata-Font/Regular.ttf);
}
body {
font-family: leagueFont;
font-size: 1rem;
/* margin-left: 26px; */
}
.characterSelect {
display: flex;
flex-direction: column;
position: absolute;
top: 0px;
z-index: inherit;
margin-top: 8px;
justify-content: space-around;
align-items: center;
}
.row {
display: flex;
justify-content: space-around;
align-items: center;
width: inherit;
}
.text {
color: white;
font-size: 1.2rem;
padding: 5px;
}
.pOption {
background: slategray;
border: goldenrod 4px solid;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.scoreboard {
display: flex;
align-items: center;
justify-content: space-between;
background: slategrey;
color: white;
}
.score {
padding: 5px 10px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.splash {
width: 118px;
height: 125px;
}
.characterSelect > p {
padding-top: 15px;
margin-bottom: 0;
}
.retry {
display: flex;
justify-content: center;
align-items: center;
background-image: url("./images/retry.jpg");
}
.retryText {
background: slategray;
color: white;
padding: 25px 50px;
border: goldenrod 4px solid;
}
.display {
display: none;
}