-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
74 lines (65 loc) · 1.12 KB
/
style.css
File metadata and controls
74 lines (65 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
69
70
71
72
73
74
body {
background-color: #4e4b56;
text-align: center;
font-family: Arial, sans-serif;
}
.head {
margin-bottom: 20px;
font-size: 50px;
color: white;
}
#display {
font-size: 50px;
line-height: 250px; /* vertically center inside circle */
margin: 0;
}
#box {
background: rgba(10, 19, 10, 0.2);
border: 1px solid;
border-radius: 10%;
margin: auto;
width: 400px;
height: 425px;
padding: 20px;
}
#timer {
border: solid 9px #f0f8ef;
background-color: #b94169;
width: 250px;
height: 250px;
border-radius: 50%;
margin: 30px auto;
display: flex;
justify-content: center;
align-items: center;
}
button:hover {
color: #4509eb;
}
#plus {
float: left;
}
#minus {
float: right;
}
.pm-btn {
outline: none;
border: none;
color: white;
height: 30px;
width: 30px;
margin: 20px;
font-size: 20px;
background-color: transparent;
cursor: pointer;
}
.button {
outline: none;
border: none;
color: white;
height: 40px;
width: 80px;
font-size: 10px;
background-color: transparent;
cursor: pointer;
}