-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
69 lines (60 loc) · 949 Bytes
/
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
body {
font-family: sans-serif;
}
h1 {
font-size: 50px;
}
.left {
clear: left;
float: left;
}
.right {
clear: right;
float: right;
}
#start,
#move,
#end {
font-size: 50px;
color: rgba(0,0,0, 0.3);
-moz-transition: all 1s;
-webkit-transition: all 1s;
-ms-transition: all 1s;
-o-transition: all 1s;
transition: all 1s;
}
#start.fired,
#move.fired,
#end.fired {
color: rgba(0,0,0, 1);
-moz-transition: none;
-webkit-transition: none;
-ms-transition: none;
-o-transition: none;
transition: none;
}
.touch {
color: white;
background-color: black;
position: absolute;
height: 88px;
width: 88px;
border-radius: 50%;
text-align: center;
-webkit-transform: translate(-50%, -50%);
font-size: 70px;
}
.nav {
padding: 0;
}
.nav li,
.nav a {
display: block;
}
.nav a {
background-color: #EFEFEF;
color: black;
padding: 10px 0;
margin: 10px 0;
text-decoration: none;
}