-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
51 lines (45 loc) · 985 Bytes
/
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
body {
margin: 0;
text-align: center;
background: #1c285c;
}
.container {
display: flex;
justify-content: space-around;
}
h1 {
font-family: Verdana;
font-size: 30px;
color: #ffffff;
margin-bottom: 10px
}
@import url("https://fonts.cdnfonts.com/css/cursed-timer-ulil");
#home-score {
color: #f94f6d;
background: #080001;
border-radius: 5px;
font-family: 'Cursed Timer ULiL', sans-serif;
font-size: 70px;
width: 150px;
margin: 10px auto;
padding-top: 10px;
}
#away-score {
color: #f94f6d;
background: #080001;
border-radius: 5px;
font-family: 'Cursed Timer ULiL', sans-serif;
font-size: 70px;
width: 150px;
margin: 10px auto;
padding-top: 10px;
}
button {
color: #9aabd8;
background: #1c285c;
font-family: 'Cursed Timer ULiL', sans-serif;
margin: 5px 2px;
padding: 8px;
border: 2px solid #9aabd8;
border-radius: 5px;
}