-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
79 lines (73 loc) · 1.38 KB
/
app.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
70
71
72
73
74
75
76
77
78
79
:not(input):not(a) {
-webkit-user-select: none;
cursor: default;
}
.button {
background-color: #6a3e2a;
border: 1px solid #492c1e;
border-radius: 5px;
color: #FFF;
display: inline-block;
line-height: 1.2em;
margin-right: 10px;
margin-top: 10px;
padding: 10px;
text-decoration: none;
}
#squiggle_view {
background-color: #FFF;
height: 600px;
overflow: hidden;
position: absolute;
text-align: right;
top: 90px;
transition: width .2s ease-in-out;
width: 300px;
z-index: 5;
}
.squiggle {
background-color: rgba(250, 250, 250, 1);
box-shadow: inset 0 0 0 1px rgba(223, 223, 223, 1);
}
#fudge_button {
left: 225px;
position: absolute;
top: 200px;
}
#marketing {
line-height: 1.4em;
position: absolute;
text-align: left;
top: 290px;
width: 300px;
}
body.initial #chart_controls {
opacity: 0;
}
body.initial #chart_div {
opacity: 0;
transition: opacity .2s ease-out;
}
body.charting #squiggle_view {
width: 0;
}
#chart_div {
min-height: 200px;
}
#chart_controls {
line-height: 1.8em;
margin-top: 10px;
transition: opacity .2s ease-in;
}
input[type=number] {
width: 5em;
}
html.istouch input {
height: 20px;
}
html.istouch input[type=range] {
margin-left: 50px;
margin-right: 50px;
transform: scale(2) translateY(3px);
width: 80px;
}