-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlayout.less
More file actions
105 lines (86 loc) · 1.3 KB
/
layout.less
File metadata and controls
105 lines (86 loc) · 1.3 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
html, body {
background: #eee;
min-height: 100%;
font-family: arial;
}
#render-container {
height: 400px;
padding: 10px;
background-color: #fff;
overflow: hidden;
}
.orientation-selector {
margin: 15px 0;
display: inline-block;
a {
display: inline-block;
background-image: url(orientations.png);
background-repeat: no-repeat;
height: 16px;
width: 16px;
cursor: pointer;
+ a {
margin-left: 15px;
}
&.orientation-finSpread {
background-position: 0 0;
}
&.orientation-longWays {
background-position: -16px 0;
}
}
}
.display-units-selector {
margin: 15px 0;
margin-left: 45px;
display: inline-block;
a {
display: inline-block;
cursor: pointer;
+ a {
margin-left: 15px;
}
&.active {
font-weight: bold;
}
}
}
.editor {
min-height: 350px;
position: relative;
> div {
min-height: 350px;
padding: 15px;
border: 1px solid #ccc;
box-sizing: border-box;
}
.parts-list {
max-width: 35%;
.part {
.name {
padding: 4px;
cursor: pointer;
&.active {
background-color: #0000ff;
color: #ffffff;
}
}
> .part {
margin-left: 25px;
}
}
}
.part-editor {
height: 100%;
position: absolute;
right: 0;
top: 0;
width: 63%;
label {
display: block;
}
input[type="range"] {
width: 100%;
}
}
}