-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (43 loc) · 777 Bytes
/
Copy pathstyle.css
File metadata and controls
47 lines (43 loc) · 777 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
47
body {
background: #ffa600;
font-family: 'HelveticaNeue-Light', 'Helvetica Neue Light', 'Helvetica Neue',
Helvetica, Arial, 'Lucida Grande', sans-serif;
height: 100%;
}
.wrapper {
width: 800px;
margin: 30px auto;
color: white;
text-align: center;
}
h1,
h2,
h3 {
font-family: 'Roboto', sans-serif;
font-weight: 100;
font-size: 2.6em;
text-transform: uppercase;
}
#seconds,
#tens {
font-size: 2em;
}
button {
border-radius: 5px;
background: #ffa600;
color: white;
border: solid 1px white;
text-decoration: none;
cursor: pointer;
font-size: 1.2em;
padding: 18px 10px;
width: 180px;
margin: 10px;
outline: none;
&:hover {
@include transition;
background: white;
border: solid 1px white;
color: #ffa600;
}
}