-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
62 lines (58 loc) · 1.1 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
body {
display: flex;
align-items: center;
flex-direction: column;
background-color: hsl(0, 0%, 90%);
}
#myH1 {
font-size: 4rem;
font-family: "Arial", sans-serif;
color: hsl(0, 0%, 25%);
}
#container {
display: flex;
flex-direction: column;
align-items: center;
padding: 30px;
border: 5px solid;
border-radius: 50px;
background-color: white;
}
#display {
font-size: 5rem;
font-family: monospace;
font-weight: bold;
color: hsl(0, 0%, 30%);
text-shadow: 2px 2px 2px hsl(0, 0%, 0%, 0.75);
margin-bottom: 25px;
}
#controls button {
font-size: 1.5rem;
font-weight: bold;
padding: 10px 20px;
margin: 5px;
min-width: 125px;
border: none;
border-radius: 10px;
cursor: pointer;
color: white;
transition: background-color 0.5s ease;
}
#startBtn {
background-color: hsl(115, 100%, 40%);
}
#startBtn:hover {
background-color: hsl(115, 100%, 30%);
}
#stopBtn {
background-color: hsl(4, 100%, 50%);
}
#stopBtn:hover {
background-color: hsl(4, 100%, 38%);
}
#resetBtn {
background-color: hsl(244, 100%, 60%);
}
#resetBtn:hover {
background-color: hsl(244, 100%, 30%);
}