-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
156 lines (132 loc) · 2.45 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
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
* {
font-family: roboto, helvetica, arial, sans-serif;
font-weight: 100;
}
.about {
background-image: url(img/fablab_logo.png);
background-size: auto 90%;
background-position: 2% 50%;
background-repeat: no-repeat;
padding-left: 2em;
}
body {
margin:0;
}
#errordiv pre {
font-size: .8rem;
white-space: pre-wrap; /* CSS3 */
white-space: -moz-pre-wrap; /* Mozilla, post millennium */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
}
.jscad-container {
min-width: 410px;
}
#viewerContext {
background: white;
top: 0px;
bottom: 0px;
}
canvas, #viewerContext {
width: 133vh;
height: 99vh;
}
canvas {
margin: 0px;
border: none;
padding: 0px;
cursor: move;
}
#leftcol {
position: fixed;
width:20vw;
top:0;
}
#rightcol {
position: fixed;
right:0;
width:20vw;
top: 0;
overflow: auto;
max-height: 98vh;
transition: width .3s ease-in-out;
}
#rightcol:hover {
width:45vw;
}
#header, #parametersdiv, #part_preview {
margin: .5em;
padding: 1em;
border: 1px solid lightgray;
background-color: white;
opacity: 0.8;
display:inline-block;
width:100%;
}
.hint {
font-size: small;
color:gray;
}
#parametersdiv table {
margin-bottom: 5px;
text-align: left;
font-weight: normal;
}
#parametersdiv th {
margin: 0px; /* not inherited */
border: 0px none gray; /* not inherited */
padding: 5px; /* not inherited */
}
#parametersdiv th.caption {
text-decoration: underline;
}
#parametersdiv td.caption {
text-align: right;
}
#parametersdiv td {
margin: 0px; /* not inherited */
border: 0px none gray; /* not inherited */
padding: 0px; /* not inherited */
}
#parametersdiv input[type=number], #parametersdiv textarea, #parametersdiv select {
border: 1px solid lightgray;
width: 4em;
text-align: right;
margin-left:.2em;
}
#instantUpdate, #instantUpdateLabel, #updateButton { display: none; }
#instantUpdate {
width:auto !important;
}
#updateButton {
margin: 5px; /* not inherited */
border: thin solid Black; /* not inherited */
padding: 2px; /* not inherited */
border-radius: 4px;
background: white;
margin-left: 1em;
}
#tail {
margin: 5px; /* not inherited */
}
#busy {
vertical-align: middle;
}
.cutline {
fill:none;
stroke: darkblue;
stroke-width: 1px;
}
.bendline {
fill:none;
stroke: #DDDDFF;
stroke-width: 1px;
stroke-dasharray: 5 5;
}
.part {
margin-bottom: 1em;
}
.part div {
font-size: .8rem;
}