-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
68 lines (57 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
63
64
65
66
67
68
@font-face {
font-family: 'Cursed Timer ULiL';
src: url("fonts/CursedTimerUlil-Aznm.ttf")
}
.container {
display: flex;
width: 575px;
height: 385px;
padding: 85px;
background: #1B244A;
}
.home_card{
display: flex;
flex-direction: column;
padding: 30px;
}
.guest_card {
display: flex;
flex-direction: column;
padding: 30px;
}
#score_home,
#score_guest {
width: 155px;
height: 120px;
border-radius: 5px;
margin-top: 0px;
margin-bottom: 0px;
background: #080001;
color: #F94F6D;
font-family: 'Cursed Timer ULiL';
font-size: 90px;
text-align: center;
line-height: 127px;
}
.home_title,
.guest_title {
font-family: 'Verdana';
font-size: 40px;
color: #EEEEEE;
margin-bottom: 21px;
}
.btn_container {
display: flex;
flex-direction: row;
justify-content:space-evenly;
margin-top: 21px;
}
button {
padding: 10px;
font-family: 'Cursed Timer ULiL';
font-size: 18px;
background: #1B244A;
border: 2px solid #9AABD8;
border-radius: 5px;
color: #9AABD8;
}