-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
67 lines (51 loc) · 1005 Bytes
/
styles.css
File metadata and controls
67 lines (51 loc) · 1005 Bytes
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
body {
font-size: 1.2em;
font-family: "Montserrat", sans-serif;
background-color: #e8f1f7;
}
h1 {
display: inline;
}
button {
font-size: 1.2em;
border: none;
border-radius: 30%;
padding: 10px;
margin: 5px;
}
#startButton {
background-color: lightgreen;
}
#startButton:hover {
background-color: rgb(137, 236, 137);
}
#stopButton {
background-color: tomato;
}
#stopButton:hover {
background-color: rgb(255, 89, 60);
}
#resetButton {
background-color: lightblue;
}
#resetButton:hover {
background-color: rgb(162, 211, 228);
}
#timeDiv {
margin: 2em;
}
#container {
border: solid 5px;
text-align: center;
padding: 20px;
width: 100%;
max-width: 500px;
margin: auto;
box-sizing: border-box;
}
.montserrat-font {
font-family: "Montserrat", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
}