-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
234 lines (209 loc) · 4.4 KB
/
index.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
body {
background-image: url("basketball-field.jpg");
background-size: cover;
}
/*FONT*/
@font-face {
src: url('CursedTimerULiL.ttf');
font-family: 'Cursed Timer ULiL';
}
/*Main Container*/
.container {
display: flex;
flex-direction: column;
justify-content: center;
width: 400px;
height: 340px;
background: #1B244A;
margin: 20px auto;
border-radius: 5px;
border: 2px solid #EEEEEE;
padding: 20px 100px;
opacity: 0.9;
box-shadow: 0px 0px 200px #F94F6D;
}
/*1st Child Main Container - Scores & Period*/
.score-period{
display: flex;
justify-content: space-around;
align-items: end;
width: 400px;
height: 150px;
}
/*2nd Child Main Container - Fouls & New Game Button*/
.fouls {
display: flex;
justify-content: space-around;
width: 400px;
height: 130px;
}
/*Home and Guest Score Title, Count and Buttons, 1st and 3rd children of .scoreboard*/
.scoreboard {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.board-title {
width: 155px;
height: 36px;
font-family: 'Verdana';
font-style: normal;
font-weight: 700;
font-size: 38px;
text-align: center;
color: #EEEEEE;
margin-bottom: 10px;
}
/*Count Display for Home and Guest*/
.score {
display: flex;
justify-content: right;
align-items: center;
width: 140px;
height: 70px;
background: #080001;
border-radius: 5px;
font-family: 'Cursed Timer ULiL';
font-style: normal;
font-weight: 400;
font-size: 90px;
color: #F94F6D;
padding-top: 20px;
}
/*Set of Buttons*/
.add-points {
display: flex;
justify-content: space-around;
align-items: center;
width: 140px;
margin-top: 10px;
}
/*Single Button for Points + Hover*/
.add-btn {
width: 35px;
height: 35px;
border: 2px solid #EEEEEE;
border-radius: 5px;
background: transparent;
color: #EEEEEE;
font-family: 'Cursed Timer ULiL';
}
.add-btn:hover{
border: 2px solid #9AABD8;
color: #9AABD8;
}
/*Period Counter, 2nd child of .scoreboard*/
.period-counter {
display: flex;
flex-direction: column;
align-items: center;
}
.period-title {
margin-bottom: 10px;
font-size: 12px;
color: #EEEEEE;
}
/*Count Display for Period*/
.period {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 50px;
background: black;
font-family: 'Cursed Timer ULiL';
color: orange;
font-style: normal;
font-weight: 400;
font-size: 50px;
padding-top: 10px;
border-radius: 5px;
}
/*Single Button for Period + Hover*/
.period-btn {
width: 30px;
height: 30px;
border: 2px solid #EEEEEE;
border-radius: 5px;
background: transparent;
color: #EEEEEE;
font-family: 'Cursed Timer ULiL';
margin-top: 10px;
}
.period-btn:hover{
border: 2px solid #9AABD8;
color: #9AABD8;
}
/*2nd child of .container and fouls and new game button*/
.fouls-board {
display: flex;
flex-direction: column;
align-items: center;
justify-content: start;
}
.fouls-title {
margin-bottom: 5px;
font-size: 22px;
color: #EEEEEE;
}
/*Fouls Couter Display*/
.fouls-counter {
display: flex;
justify-content: right;
align-items: center;
width: 80px;
height: 60px;
background: black;
font-family: 'Cursed Timer ULiL';
color: #F94F6D;
font-style: normal;
font-weight: 400;
font-size: 60px;
padding-top: 10px;
border-radius: 5px;
}
/*Fouls Button Set*/
.foul-btn-set {
display: flex;
justify-content: space-around;
width: 80px;
margin-top: 10px;
}
/*Single Buttons for Fouls Count*/
.foul-btn {
width: 30px;
height: 30px;
border: 2px solid #EEEEEE;
border-radius: 5px;
background: transparent;
color: #EEEEEE;
font-family: 'Cursed Timer ULiL';
}
.foul-btn:hover{
border: 2px solid #9AABD8;
color: #9AABD8;
}
/*New Game Button Box*/
.new-game-btn {
display: flex;
align-items: center;
}
/*New Game Button and Hover*/
.game-btn {
width: 140px;
height: 40px;
border: 3px solid #EEEEEE;
border-radius: 5px;
background: transparent;
color: #EEEEEE;
font-family: 'Cursed Timer ULiL';
font-style: normal;
font-weight: 400;
font-size: 20px;
padding-top: 5px;
}
.game-btn:hover{
border: 2px solid #9AABD8;
color: #9AABD8;
}