-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformaster.css
65 lines (55 loc) · 932 Bytes
/
formaster.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
/* Miscellaneous */
label {
line-height: 25px;
}
.line input[type="text"], .line select, .line textarea {
width: 100%;
}
/* Templating */
.line {
border-bottom: 1px dotted #ccc;
padding: 10px 0;
}
.line:after, .line:before {
content : "";
display: table;
}
.line:after {
clear: both;
}
.line .line {
padding: 0;
}
.line:last-child, .line.last {
border-bottom: none;
}
.master {
float: left;
margin-right: 10px;
}
.slave{
float: none;
width: auto;
display: table-cell;
width: 10000px;
box-sizing: border-box;
}
/* Master on right */
.rightMaster .master {
float: right;
margin-right: 0;
margin-left: 10px;
}
.rightMaster .slave {
padding: 0 10px 0 0;
}
/* Media queries */
@media screen and (max-width: 480px) {
.master {
width: 100%;
}
.master .master, .slave .master {
width: auto;
}
}