-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtimer.css
More file actions
46 lines (42 loc) · 754 Bytes
/
Copy pathtimer.css
File metadata and controls
46 lines (42 loc) · 754 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
* {
margin: 0;
padding: 0;
}
body {
text-align: center;
padding: 10px;
font-size: 30px;
}
.container {
max-width: 100%;
margin: 10 auto;
/* border: 3px solid red; */
padding: 20px;
}
.heading {
color: blue;
padding: 10px;
}
span {
padding: 10px;
margin: 10px 5px;
}
button {
display: inline-block;
outline: 0;
cursor: pointer;
text-align: center;
border: 0;
padding: 7px 16px;
min-height: 36px;
min-width: 36px;
color: #ffffff;
background: #008060;
border-radius: 4px;
font-weight: 500;
font-size: 14px;
box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 0px 0px, rgba(0, 0, 0, 0.2) 0px -1px 0px 0px inset;
}
button:hover {
background: #006e52;
}