-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
93 lines (81 loc) · 1.76 KB
/
index.css
File metadata and controls
93 lines (81 loc) · 1.76 KB
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
body {
margin: 0;
text-align: center;
background-color: lightcyan;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
max-width: 360px;
min-width: 360px;
/* border: 1px solid red; */
padding: 20px 20px;
margin: 10px 10px;
border-radius: 10px;
background: #1B244A;
}
.sub-container-enclosure {
display: flex;
flex-direction: row;
justify-content: space-between;
/* border: 1px solid red; */
width: 360px;
}
.sub-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h3 {
font-size: 40px;
padding: 5px 5px;
margin: 5px 5px;
color: white;
}
.score-div {
display: flex;
flex-direction: column;
justify-content: center;
font-family: 'Cursed Timer ULiL', sans-serif;
/* border: 1px solid red; */
border-radius: 10px;
background: #1B244A;
width: 150px;
}
#home-score, #guest-score {
font-size: 50px;
margin: 20px 20px;
background-color: black;
color: red;
padding-top: 25px;
padding-bottom: 25px;
padding-right: 30px;
padding-left: 10px;
border-radius: 10px;
}
.lcd-btn {
margin-top: 10px;
font-family: 'Cursed Timer ULiL', sans-serif;
background: none;
color: gray;
border: 1px solid gray;
border-radius: 5px;
margin: 5px;
padding: 3px 5px;
cursor: pointer;
}
.clear-btn {
margin-top: 20px;
width: 150px;
line-height: 30px;
padding: 5px 5px;
font-family: 'Cursed Timer ULiL', sans-serif;
background: none;
color: gray;
border: 1px solid gray;
border-radius: 10px;
cursor: pointer;
}