-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
49 lines (45 loc) · 1.01 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
.startTimerBtn{
/* width: 80px;
height: 30px;
border: 3px solid;
border-radius: 12px;*/
width: 90px;
height: 33px;
border: 4px solid;
border-color: white;
border-radius: 15px;
background-color: #0000FF;
color: white;
cursor: pointer;
font-family: consolas, monospace;
}
.resetTimerBtn{
/*width: 80px;
height: 30px;
border: 3px solid;
border-color: white;
border-radius: 12px; */
width: 90px;
height: 33px;
border: 4px solid;
border-color: white;
border-radius: 15px;
background-color: #7EC8E3;
color: black;
cursor: pointer;
font-family: consolas, monospace;
}
#timeDisplay{
font-size: 150px;
color: #40c437;
font-family: consolas, monospace;
}
#timeContainer{
text-align: center;
border: 3px solid;
border-radius: 25px;
background-color: #222222;
}
#topContainer{
padding-top: 25px;
}