-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
113 lines (93 loc) · 1.69 KB
/
Copy pathstyle.css
File metadata and controls
113 lines (93 loc) · 1.69 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
109
110
111
112
113
body {
background: #000; /* older browsers */
font-family: verdana;
font-size: 12px;
}
h2, h3 {
margin: 5px 0;
}
a {
color: #333;
}
a:hover {
color: #737373;
}
.visible {
font-weight: bold;
}
a[target=_blank] {
padding-right: 15px;
}
header {
padding-bottom: 20px;
}
header li {
display: inline-block;
margin-right: 30px;
}
footer {
margin-top: 20px;
font-style: italic;
text-align: center;
}
.container {
margin: 0 auto;
max-width: 100vw;
width: 100%;
padding: 20px;
background-color: #fff;
}
#webgl_solarsystem_instructions {
padding: 1em;
background-color: steelblue;
color: white;
margin-bottom: 15px;
border-radius: 8px;
}
#webgl_solarsystem_gui {
overflow: hidden;
}
#millisecondsPerDay {
min-width: 300px;
}
#millisecondsPerDayInfo {
font-style: italic;
}
.canvas_solar_system {
display: block;
margin: 20px auto;
background-color: #000;
}
.canvas_solar_system--full_screen {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: 999;
background-color: #000;
}
.webgl_solarsystem_gui__fieldset_container {
margin-bottom: 10px;
}
.webgl_solarsystem_gui__fieldset_container--cols_2 {
float: left;
width: 48%;
margin-right: 1%;
}
.webgl_solarsystem_gui__fieldset_container--cols_3 {
float: left;
width: 32%;
margin-right: 1%;
}
.webgl_solarsystem_gui__fieldset_container fieldset {
width: 100%;
border: 0;
padding: 0.1em;
}
.webgl_solarsystem_gui__fieldset_container fieldset label {
display: block;
}
.webgl_solarsystem_gui__fieldset_container fieldset:first-child label {
font-weight: bold;
}