-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathstyles.css
More file actions
95 lines (79 loc) · 1.24 KB
/
styles.css
File metadata and controls
95 lines (79 loc) · 1.24 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
body {
color: #0f0f0f;
background-color: #efefef;
font-family: Helvetica, sans-serif;
}
form {
font-size: 150%;
}
input[type='number'] {
text-align: right;
font-size: 100%;
width: 2em;
}
input[type=checkbox] {
transform: scale(1.5);
}
select {
font-size: 100%;
}
canvas {
background-color: #f7f7f7;
}
h1, h2, h3 {
text-align: center;
}
th,
td {
padding-left: 0.25em;
padding-right: 0.25em;
}
td {
text-align: right;
}
ul {
padding-left: 16px;
}
.row {
display: flex;
}
.col {
margin: 0.25em;
flex: 50%;
}
.floating_controls {
border: 2px solid #dfdfdf;
background-color: #efefefdf;
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 1;
overflow-y: auto;
max-height: 30vh;
max-width: max-content;
margin: auto;
}
.static_controls {
max-width: max-content;
margin: auto;
}
.chart_container {
position: relative;
margin: auto;
width: 90vw;
max-width: 180vh;
height: 60vh;
max-height: 60vw;
}
.chart_container_wide {
position: relative;
margin: auto;
width: 90vw;
# max-width: 400vh;
height: 50vh;
max-height: 25vw;
}
.text_content {
max-width: 720px;
margin: auto;
}