-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
73 lines (65 loc) · 1.51 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
69
70
71
72
73
@font-face {
font-family: 'Cursed Timer ULiL';
src: url('path/to/CursedTimerULiL.ttf') format('truetype');
}
body {
font-family: 'Cursed Timer ULiL', Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: linear-gradient(135deg, #383836 10%, #4a4a4a 360%);
margin: 0;
color: #FFFFFF;
}
.scoreboard {
text-align: center;
padding: 40px;
background-color: rgba(0, 0, 0, 0.8);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
border-radius: 15px;
backdrop-filter: blur(10px);
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 50px;
}
.team {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}
.team h2 {
color: #B0C4DE;
margin-bottom: 10px;
}
#teamOneScore,
#teamTwoScore {
font-size: 48px;
font-weight: bold;
color: #FFFFFF; /* Changed to white */
background-color: rgba(0, 0, 0, 0.8); /* Added a semi-transparent black background */
padding: 10px; /* Added padding inside the box */
border-radius: 5px; /* Rounded corners for the box */
}
.action-button {
display: block;
padding: 10px 20px;
background-color: #007BFF;
color: #FFFFFF;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.action-button:hover {
background-color: #0056b3;
}
@media (max-width: 768px) {
.scoreboard {
width: 90%;
padding: 20px;
}
}