-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
108 lines (94 loc) · 1.83 KB
/
app.css
File metadata and controls
108 lines (94 loc) · 1.83 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
body * {
margin: 0;
padding: 0;
font-weight: normal;
}
html, body {
margin: 0;
padding: 0;
background-color: #34001F;
font-family: "Helvetica Neue", Helvetica, Arial, Sans-Serif;
width: 100%;
height: 100%;
overflow: hidden;
}
.curve-control {
background-color: #FF0;
height: 62%;
min-height: 150px;
position: relative;
}
.curve-control header {
line-height: 64px;
text-align: center;
}
.curve-control .preview {
background-color: #333;
width: 100%;
height: 90%;
}
.curve-control .curve {
-webkit-user-select: none;
}
.indicator {
background-color: #FFF;
width: 50px;
height: 50px;
border-radius: 25px;
display: inline-block;
-webkit-tranform: translate(-150%, 0);
margin-left: 5px;
margin-right: 5px;
margin-top: 10px;
margin-bottom: 10px;
display: none;
-webkit-transition: background-color 0.25s linear;
-webkit-user-select: none;
}
.indicator.active {
display: inline-block;
background-color: #645B99;
}
.indicator.current {
background-color: #FFF;
}
.indicator.current .proof {
background-color: #F00;
}
.proof {
background-color: #FFF;
width: 80%;
height: 80%;
border-radius: 100%;
margin: 10% 0 0 10%;
-webkit-user-select: none;
}
.proof.pause {
background-color: #FF0;
}
.tracked-curves {
display: block;
position: relative;
background-color: #8D0054;
height: 30%;
text-align: center;
overflow-x: hidden;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
padding-bottom: 10px;
}
footer {
color: #DBC6DC;
text-align: center;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: antialiased;
height: 10%;
padding-top: 2%;
font-size: 12px;
line-height: 200%;
}
footer a, footer a:link, footer a:active, footer a:visited {
color: #DBC6DC;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: antialiased;
}