-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
69 lines (59 loc) · 1 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
body {
margin: 0;
padding: 20px;
background-image: url("./img/basketball-court.jpg");
background-size: cover;
}
main {
display: flex;
justify-content: center;
}
h3 {
text-transform: uppercase;
font-size: 2rem;
margin: 20px 0;
}
a {
text-decoration: none;
color: inherit;
}
a:hover {
font-weight: 700;
}
.text-center {
text-align: center;
}
.btn {
background-color: #282828;
color: #FFFFFF;
font-weight: 500;
padding: 10px 15px;
border-radius: 5px;
}
.btn:hover {
cursor: pointer;
}
.board {
display: flex;
gap: 40px;
justify-content: center;
border: 3px solid #000000;
border-radius: 10px;
padding: 20px;
box-shadow: 5px 5px 5px #282828;
background-color: #FFFFFF;
}
p#score-home, p#score-guest {
font-family: 'Cursed Timer ULiL', sans-serif;
font-size: 4rem;
color: #FFFFFF;
background-color: #282828;
border-radius: 5px;
padding: 20px 20px;
margin: 20px 0;
}
.section-points {
display: flex;
justify-content: center;
gap: 20px;
}