-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
68 lines (58 loc) · 1.12 KB
/
style.css
File metadata and controls
68 lines (58 loc) · 1.12 KB
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
/* Body */
body {
background-color: hsl(0, 0%, 30%);
height: 100vh;
text-align: center;
overflow: hidden;
}
/* Heading */
h1 {
color: black;
font-size: 4rem;
font-family: monospace;
}
/* clock */
#clock {
font-size: 4rem;
font-family: monospace;
color: hsl(60, 100%, 50%);
text-shadow: 3px 2px 2px hsla(60, 100%, 50%, 0.4);
margin-bottom: 25px;
}
/* Control Pannel */
.controls {
display: flex;
gap: 25px;
align-items: center;
justify-content: center;
}
/* Buttons */
button {
padding: 5px 20px;
border-radius: 15px;
border: none;
font-weight: bold;
color: white;
font-size: 1.15rem;
font-family: monospace;
cursor: pointer;
transition: background-color 0.5s ease;
}
#startBtn {
background-color: hsl(0, 100%, 50%);
}
#startBtn:hover {
background-color: hsla(0, 100%, 50%, 0.8);
}
#stopBtn {
background-color: hsl(120, 100%, 25%);
}
#stopBtn:hover {
background-color: hsla(120, 100%, 25%, 0.8);
}
#resetBtn {
background-color: hsl(240, 100%, 50%);
}
#resetBtn:hover {
background-color: hsla(240, 100%, 50%, 0.8);
}