forked from microsoft/maker.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathviewer.css
More file actions
99 lines (97 loc) · 1.64 KB
/
viewer.css
File metadata and controls
99 lines (97 loc) · 1.64 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
html, body {
height: 100%;
margin: 0;
padding: 0;
font-family: 'Segoe UI', sans-serif;
}
body {
overflow-y: scroll;
}
#paramBar {
position: absolute;
width: 140px;
top: 70px;
right: 35px;
}
#params input {
display: block;
width: 100%;
margin-bottom: 30px;
margin-top: 8px;
padding: 0;
}
#view {
background-color: #317CCF;
position: fixed;
top: 70px;
bottom: 60px;
left: 20px;
right: 210px;
overflow: hidden;
}
svg, .svg-zone {
height: 100%;
width: 100%;
}
svg line, svg circle, svg path {
stroke: #fff;
stroke-width: 2;
fill: none;
}
#svg-guides svg line, #crosshairs-vertical, #crosshairs-horizontal {
stroke: #4DD2FF;
stroke-width: 1;
}
#svg-pan-zoom-controls .svg-pan-zoom-control-background {
fill: none;
}
#svg-pan-zoom-controls path {
stroke-width: 0;
fill: #fff;
opacity: 1;
}
svg text {
fill: #0ff;
}
.optionpanel {
position: fixed;
left: 20px;
bottom: 20px;
right: 20px;
white-space: nowrap;
}
.optionpanel a {
background-color: #ccc;
color: #fff;
padding: 4px 10px;
text-decoration: none;
}
.optionpanel label {
margin-left: 20px;
}
.logo {
position: fixed;
top: 14px;
left: 20px;
font-size: 24px;
font-weight: normal;
color: #aaa;
line-height: 18px;
letter-spacing: 6px;
text-transform: lowercase;
}
.logo img {
margin-bottom: -3px;
}
.selectModelCode {
position: fixed;
top: 34px;
right: 210px;
}
.selectModelCode * {
font-size: 18px;
font-weight: 200;
}
#crosshairs-horizontal_text, #crosshairs-vertical_text {
display: none;
}