-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
110 lines (96 loc) · 1.92 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/* referred to css-tricks.com and w3schools.com; received guidance from classmates and advisors */
body {
font-family: 'Original Surfer', cursive;
color: rgb(141, 145, 145);
}
header {
font-size: 30pt;
color: rgb(141, 145, 145);
display: flex;
justify-content: center;
}
p {
display: flex;
justify-content: center;
}
.footer {
position: fixed;
bottom: 2px;
}
.scoreBoard {
display: flex;
justify-content: center;
align-items: baseline;
color: rgb(141, 145, 145);
}
.rips {
padding-right: 10px;
}
.wipeouts {
padding-right: 10px;
}
button {
font-family: 'Original Surfer', cursive;
font-size: 14pt;
background-color: rgb(16, 231, 231);
color: white;
border-radius: 10px;
display: flex;
align-items: center;
margin: 0 auto;
}
button:hover {
cursor: pointer;
}
.disabled {
opacity: 0.5;
cursor: not-allowed;
}
.question {
font-family: 'Original Surfer', cursive;
font-size: 14pt;
color: rgb(141, 145, 145);
}
.results {
font-family: 'Original Surfer', cursive;
font-size: 14pt;
color: rgb(141, 145, 145);
}
.buttons {
font-family: 'Original Surfer', cursive;
font-size: 12pt;
background-color: white;
color: lightseagreen;
border-radius: 50px;
display: flex;
justify-content: space-evenly;
margin: 0 auto;
}
.nextButton {
font-family: 'Original Surfer', cursive;
font-size: 14pt;
background-color: rgb(16, 231, 231);
color: white;
border-radius: 10px;
display: flex;
align-items: center;
margin: 0 auto;
}
.startOverButton {
font-family: 'Original Surfer', cursive;
font-size: 14pt;
background-color: rgb(198, 202, 202);
color: white;
border-radius: 10px;
display: flex;
align-items: center;
margin: 15px auto;
}
html {
background: url('./images/roman-raizen-1B-v3DikGL4-unsplash.jpg') no-repeat
center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}