-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
99 lines (81 loc) · 1.39 KB
/
style.css
File metadata and controls
99 lines (81 loc) · 1.39 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
body {
font-family: sans-serif;
background-color: #222;
color: #eee;
}
#main-controls {
padding: 20px;
}
#layers-container {
margin-top: 20px;
}
.layer {
border: 1px solid #444;
padding: 10px;
margin-bottom: 10px;
}
.layer-controls {
display: flex;
align-items: center;
}
.layer-controls label {
margin-right: 10px;
}
.layer-controls input[type="file"] {
margin-right: 10px;
}
.layer-preview {
width: 200px;
height: 150px;
background-color: #000;
margin-top: 10px;
}
.advanced-controls {
margin-top: 10px;
}
.advanced-controls div {
margin-bottom: 5px;
}
.advanced-controls label {
display: inline-block;
width: 120px;
}
.advanced-controls input[type="range"] {
width: 150px;
}
/* ISF Controls */
.isf-control {
display: flex;
align-items: center;
margin-bottom: 8px;
padding: 4px 0;
}
.isf-control label {
min-width: 120px;
margin-right: 10px;
font-size: 12px;
}
.isf-control input[type="range"] {
width: 120px;
margin-right: 8px;
}
.isf-control input[type="checkbox"] {
margin-right: 8px;
}
.isf-control input[type="color"] {
width: 40px;
height: 25px;
border: none;
border-radius: 3px;
}
.isf-control span {
font-size: 11px;
color: #aaa;
min-width: 40px;
text-align: right;
}
h4 {
margin: 10px 0 8px 0;
color: #0ff;
font-size: 14px;
}