-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
62 lines (60 loc) · 1.09 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
body {
min-height: 100vh;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
}
@font-face {
font-family: myFirstFont;
src: url("CursedTimerULiL.ttf");
}
#wrapper {
display: flex;
justify-content: center;
height: 220px;
width: 350px;
align-items: center;
background: #1b244a;
color: white;
}
.l1-box {
padding: 12px;
margin: 10px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.div-score {
width: 100px;
height: 55px;
font-size: 48px;
margin: 10px;
text-align: center;
background: rgba(8, 0, 1, 1);
padding-top: 5px;
padding-bottom: 5px;
font-family: myFirstFont;
color: #f94f6d;
padding-top: 10px;
padding-bottom: 2px;
}
.p-title {
font-weight: bold;
font-size: 28px;
margin: auto auto;
font-family: "Verdana";
}
.button-wrapper {
margin: 6px 0;
}
button {
font-family: myFirstFont;
background: #1b244a;
border: 1px solid #9aabd8;
color: #9aabd8;
height: 28px;
border-radius: 4px;
margin: 0 1px;
}