-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
136 lines (117 loc) · 2.81 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
background-color: #0E1E5B;
}
.container {
text-align: center;
}
.scoreboard-container {
display: flex;
flex-direction: column;
align-items: center;
}
.logo-space {
margin-bottom: -20px;
}
.logo-space img {
max-height: 150px;
}
/* Scoreboard Styling */
.scoreboard {
background-color: #002248;
border-radius: 20px;
padding: 30px;
color: white;
display: flex;
flex-direction: column;
align-items: center;
width: 710px; /* Increased width */
}
.score-row {
background-color: #ffffff;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: space-between;
overflow: hidden;
width: 100%;
}
.team-input, .score-input {
width: 150px; /* Increased input width */
border: none;
padding: 15px;
text-align: center;
font-size: 3.2rem; /* Increased font size */
background-color: #ffffff;
color: #000;
}
.team-input {
text-transform: uppercase;
}
.separator {
color: #000;
font-size: 3rem; /* Increased font size */
background-color: #ffffff;
padding: 20px;
}
.timer-section {
margin-top: 20px; /* Increased spacing */
display: flex;
align-items: center;
}
.timer {
background-color: #002248;
color: #ffffff;
padding: 15px 40px; /* Increased padding */
border-radius: 15px;
font-size: 4rem; /* Increased font size */
}
.extra-time {
display: none; /* Start hidden by default */
background-color: #6594C0 !important; /* Blue background color */
color: #ffffff !important; /* White text */
padding: 15px 30px; /* Increased padding */
border-radius: 15px;
font-size: 2.5rem; /* Increased font size */
margin-left: 15px; /* Increased space between the timer and extra time */
white-space: nowrap;
font-weight: bold; /* Bold text */
}
/* Control Buttons Styling */
.controls {
display: flex;
flex-wrap: wrap;
gap: 15px; /* Increased gap between buttons */
justify-content: center;
}
.controls .btn {
padding: 18px 25px; /* Increased padding */
font-size: 1.5rem; /* Increased font size */
font-weight: bold; /* Bold text */
}
#extra-time-input {
padding: 15px; /* Increased padding */
font-size: 1.5rem; /* Increased font size */
border-radius: 10px;
border: 2px solid #38003c;
width: 120px; /* Increased width */
}
/* Extra Time Button Styling */
#set-extra-time-btn {
background-color: #6594C0; /* Background color */
color: white; /* White text */
padding: 18px 30px; /* Larger padding */
font-size: 1.5rem; /* Larger font size */
font-weight: bold; /* Bold text */
border-radius: 10px; /* Rounded corners */
border: none; /* No border */
transition: background-color 0.3s ease; /* Smooth color change on hover */
}
#set-extra-time-btn:hover {
background-color: #4A7C98; /* Slightly darker blue when hovered */
}