forked from vincentzyc/form-design
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththemes.styl
More file actions
59 lines (51 loc) · 1.04 KB
/
themes.styl
File metadata and controls
59 lines (51 loc) · 1.04 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
.theme1 {
.widget-child-form-list {
position: relative;
background: #fff;
box-shadow: 5px 5px 10px 0 rgba(116, 116, 116, 0.6), -5px 5px 10px 0 rgba(116, 116, 116, 0.6);
}
}
.theme2 {
.widget-form-list {
.widget-child-form-list {
position: relative;
background: #fff;
padding: 10px;
}
.wg-title:after {
content: '*';
color: #e10012;
font-weight: 700;
font-size: 14px;
}
.wg-input, .wg-select {
border: none;
}
.widget-view:not(:last-child) .wg-item {
border-bottom: 1px solid #ddd;
}
.widget-view .wg-item:not(:last-child) {
border-bottom: 1px solid #ddd;
}
}
}
.theme3 {
.widget-form-list {
.widget-child-form-list {
position: relative;
background: #fff;
padding: 10px;
}
.wg-title:after {
content: '*';
color: #e10012;
font-weight: 700;
font-size: 14px;
}
.wg-input, .wg-select {
border-radius: 10px;
padding: 0 10px;
border: 1px solid #a92200;
}
}
}