-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
124 lines (108 loc) · 1.66 KB
/
styles.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
body {
padding: 0;
margin: 0;
text-align: center;
overflow: hidden;
background-color: #000;
cursor: crosshair;
}
body.grabbing {
cursor: move;
}
#container canvas {
height: 200vh;
width: 200vh;
zoom: 0.5;
}
#julia-map {
position: fixed;
bottom: 0;
left: 0;
z-index: 1;
}
#julia-map canvas {
height: 100vh;
width: 100vh;
zoom: 0.5;
}
aside,
code {
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Open Sans","Helvetica Neue",sans-serif;
}
code,
kbd {
font-size: 12px;
display: inline-block;
}
aside {
position: fixed;
right: 10px;
bottom: 10px;
z-index: 4;
width: 0;
height: 0;
cursor: default;
transition: all 150ms ease-in;
background: #fff;
border-radius: 3px;
padding: 0;
white-space: nowrap;
overflow: hidden;
}
#aside-inner {
position: absolute;
bottom: 10px;
right: 10px;
width: 300px;
height: 600px;
}
h4 {
margin-top: 15px;
margin-bottom: 10px;
text-align: left;
}
table {
border-collapse: collapse;
width: 100%;
text-align: left;
}
td {
padding-bottom: 10px;
}
aside table td:nth-child(2) {
text-align: right;
vertical-align: top;
color: #666;
font-size: 10px;
white-space: nowrap;
}
kbd {
box-shadow: none;
line-height: 14px;
padding: 4px 6px;
border: none;
background-color: #f2f3f5;
color: #1b2733;
border-radius: 3px;
}
#help {
position: fixed;
bottom: 10px;
right: 10px;
height: 20px;
width: 20px;
border-radius: 10px;
border: 0;
color: gray;
cursor: pointer;
}
aside.initially-open,
aside:hover,
#help:hover + aside {
width: 300px;
height: 600px;
padding: 10px;
}
.arrow {
font-size: 16px;
}