-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
74 lines (70 loc) · 1.32 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
@import url("https://fonts.cdnfonts.com/css/cursed-timer-ulil");
body {
font-family: Verdana, Geneva, Tahoma, sans-serif;
text-align: center;
background-color: #1b244a;
color: azure;
font-weight: 700px;
font-size: 40px;
}
.outer-container {
display: inline-flex;
flex-flow: row wrap;
gap: 30px;
}
.home-score,
.guest-score {
color: #f94f6d;
background-color: black;
padding: 30px;
font-size: 90px;
font-weight: 400px;
border-radius: 5px;
font-family: "Cursed Timer ULiL", sans-serif;
line-height: 126.67px;
width: 155px;
height: 120px;
top: 125px;
margin: auto;
}
.buttons {
margin-bottom: 50px;
margin-top: 10px;
}
.score-container {
padding: 4px 5px;
}
.btn {
background-color: transparent;
font-family: "Cursed Timer ULiL", sans-serif;
color: #9aabd8;
border: 2px solid #9aabd8;
line-height: 50px;
font-size: 25px;
border-radius: 5px;
padding: 8px 13px;
}
.btn:hover {
color: #8090bc;
border: 2px solid #8090bc;
}
#home-buttons,
#guest-buttons {
margin: 20px;
}
#reset {
display: block;
margin: auto;
font-family: Verdana, Geneva, Tahoma, sans-serif;
text-align: center;
background-color: #841e31;
color: azure;
font-weight: 700px;
font-size: 40px;
border-radius: 5px;
border-color: none;
padding: 5px 10px;
}
#reset:hover {
background-color: #a44556;
}