-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
84 lines (67 loc) · 1.33 KB
/
styles.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
body{
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
background: linear-gradient(90deg, lightblue, white);
}
h1{
text-align: center;
font-size: 50px;
}
p{
text-align: center;
}
#labels{
display: flex;
justify-content: center;
align-items: center;
font-size: 30px;
margin-bottom: 20px;
}
#labels h2{
margin-right: 60px;
}
#timer-container{
align-items: center;
justify-content: center;
text-align: center;
margin: 0;
}
#timer-container #timer{
display: inline-block;
font-size: 250px;
margin-bottom: 20px;
margin-top: -20px;
padding: 30px;
border: 10px solid black;
border-radius: 10px;
}
#buttons {
text-align: center;
margin: auto;
}
#buttons button{
margin: auto;
margin-right: 10px;
margin-top: 20px;
width: 200px;
height: 50px;
border-radius: 10px;
font-size: medium;
border-style: none;
}
#buttons #startButton{
display: inline-block;
}
#buttons #resetButton{
display: none;
}
#buttons #pauseButton{
display: none;
}
#buttons button:hover{
background-color: yellow;
}
.highlight{
background-color: lightcoral;
border: 15px solid lightcoral;
border-radius: 10px;
}