-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
138 lines (125 loc) · 3.43 KB
/
index.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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
@import url(https: //fonts.googleapis.com/css?family=Open+Sans: 400,300);
* {
padding: 0;
margin: 0;
}
body {
background: #bbb;
}
#title {
width: 96%;
padding: 0 0 12px 0;
border-bottom: 2px solid black;
margin: 24px 2% 12px 2%;
font-size: 32px;
font-weight: normal;
font-family: 'Open Sans';
}
#subtitle {
width: 96%;
margin: 0 2% 12px 2%;
font-size: 24px;
font-weight: lighter;
font-family: 'Open Sans';
}
#container {
width: 96%;
margin: 12px 2%;
display: inline-block;
}
#container > * {
width: 98%;
padding: .5em 1%;
border: 2px solid black;
}
.hidden {
display: none !important;
}
.error {
padding: 0.5em;
background: pink;
border: 2px solid red;
border-radius: 5px;
}
/*------------------------------------------------------------------------------------------------\
Webcharts Version
\------------------------------------------------------------------------------------------------*/
#container > .versionSelect {
width: 98%;
background: white;
border-radius: 5px;
margin-bottom: 1em;
font-family: 'Open Sans';
}
.versionSelect > * {
margin-right: 5px;
}
/*------------------------------------------------------------------------------------------------\
Controls
\------------------------------------------------------------------------------------------------*/
#container > .controls {
border: 2px solid #bbb;
}
/*------------------------------------------------------------------------------------------------\
Charts
\------------------------------------------------------------------------------------------------*/
#container > .charts {
border: 2px solid #bbb;
}
#container > .charts div.testWrap {
border: 2px solid black;
background: white;
padding: 1em;
margin: 1em 0;
}
#container > .charts div.testWrap .chart {
border: 1px dotted #444;
margin: 1em;
padding: 1em;
}
#container > .charts div.testWrap .chart,
#container > .charts div.testWrap .notes {
display: inline-block;
}
#container > .charts div.testWrap .notes {
width: 350px;
vertical-align: top;
margin: 1em;
}
#container > .charts div.testWrap .notes div {
padding-top: .5em;
}
#container > .charts div.testWrap .notes div ul {
margin-top: 0;
padding-left: 40px;
}
#container button {
margin-top: 10px;
}
/*------------------------------------------------------------------------------------------------\
Settings area
\------------------------------------------------------------------------------------------------*/
.settings-toggle {
width: 100%;
display: block;
cursor: pointer;
}
.code-block {
width: 49%;
display: inline-block;
margin-top: 1em !important;
}
.code-block code {
border: 1px solid white;
}
.code-block--input {
float: right;
padding: .5em !important;
}
/*------------------------------------------------------------------------------------------------\
Big One
\------------------------------------------------------------------------------------------------*/
#big-one {
background: white;
margin: 1em 0;
}