-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
114 lines (94 loc) · 1.6 KB
/
style.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
body {
background: silver;
margin: 0;
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen-Sans","Ubuntu","Cantarell","Helvetica Neue",sans-serif;
}
.content-box {
background: darkgrey;
padding: 10px;
border-radius: 5px;
border: solid 1px #0f144f;
}
.footer {
margin-top: 15px;
text-align: center;
}
.footer > a {
padding: 10px;
color: #0f144f;
}
.center-column {
display: flex;
justify-content: center;
}
nav {
text-align: center;
height: 45px;
display: flex;
justify-content: center;
align-items: center;
background: #306363;
color: #cdcdcd;
background: #0f144f;
font-size: 1.25rem;
margin-bottom: 10px;
}
#canvas-wrapper {
position: relative;
width: 800px;
height: 800px;
display: inline-block;
border-radius: 10px;
background: white;
}
#canvas-static {
position: absolute;
border-radius: 10px;
}
#canvas-refreshing {
position: absolute;
border-radius: 10px;
}
#spiro-control {
width: 200px;
display: inline-block;
vertical-align: top; /* not sure why necessary */
}
#center-lat-long {
width: 12em;
}
#stator-radius {
display: block;
}
.rotor .rotor-radius,
#stator-radius,
#pen-radius,
#sample-points,
#start-segment,
#end-segment,
#scale-radius,
#altitude
{
width: 4em;
display: block;
}
.rotor {
display: flex;
flex-direction: row;
}
.rotor button {
margin-left: 5px;
}
.delete-rotor {
color: darkred;
}
#rotors-div {
margin-top: 10px;
margin-bottom: 10px;
}
label {
display: block;
}
#output-container {
margin-top: 20px;
}