-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
40 lines (35 loc) · 765 Bytes
/
styles.css
File metadata and controls
40 lines (35 loc) · 765 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
body {
background-color: #17D4EF;
font-family: sans-serif;
}
.wrapper {
text-align: center;
color: #FFF;
}
.wrapper h1 {
font-family: 'Roboto', sans-serif;
font-size: 40px;
font-weight: 100;
}
.wrapper #seconds, .wrapper #tens {
font-size: 32px;
}
.wrapper button {
border-radius: 5px;
background-color: #17D4EF;
color: #FFF;
font-size: 18px;
padding: 18px 10px;
width: 180px;
margin: 10px;
border: 1px solid #FFF;
cursor: pointer;
}
.wrapper button:hover {
-webkit-transition: all 0.5s ease-in-out;
transition: all 0.5s ease-in-out;
background-color: #FFF;
color: #17D4EF;
border: 1px solid #FFF;
}
/*# sourceMappingURL=styles.css.map */