-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
83 lines (71 loc) · 1.39 KB
/
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
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
body {
margin: 0;
}
h1 {
color: aquamarine;
margin: 0 auto;
margin-bottom: 1em;
}
h3 {
color: #EEEEEE;
margin-bottom: 30px;
font-size: 36px;
}
.container {
display: grid;
grid-template-areas:
".... .... .... .... .... ...."
"head head head head head bttn"
".... home home away away ...."
".... .... .... .... .... ....";
/* justify-content: space-around; */
background-color: #1B244A;
padding: 70px 80px;
width: 720px;
margin: 0 auto;
}
.title {
grid-area: head;
}
.home {
grid-area: home;
}
.away {
grid-area: away;
}
.card-team {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.section-score {
font-family: 'Cursed Timer ULiL', sans-serif;
width: 155px;
height: 120px;
color: #F94F6D;
background-color: #080001;
margin-top: 0px;
margin-bottom: 0px;
border: 2px solid white;
border-radius: 5px;
padding: 20px 40px;
font-size: 130px;
font-style: italic;
text-shadow: 0 0 15px seashell;
}
.container-controls {
margin-top: 20px;
}
button {
font-family: 'Cursed Timer ULiL', sans-serif;
font-size: 26px;
width: 70px;
height: 70px;
color: #9AABD8;
border: 2px solid #9AABD8;
border-radius: 4px;
background-color: #1B244A;
margin: 5px 5px;
grid-area: bttn;
}