-
Notifications
You must be signed in to change notification settings - Fork 10
/
style.css
92 lines (77 loc) · 1.32 KB
/
style.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
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
#conf table {
width:100%;
border-collapse: collapse;
background-color:#fcfcfc;
}
#conf table {
text-align:left;
border: 1px solid #ccc;
padding:5px;
}
#conf th {
text-align:left;
border: 1px solid #ccc;
padding:5px;
}
#conf td {
text-align:left;
border: 1px solid #ccc;
padding:5px;
}
#conf input {
margin:0px;
border:none;
width:70%;
font-size:16px;
padding-right:4px;
background-color:#fcfcfc;
}
#conf select {
border:none;
width:100%;
font-size:14px;
color:#666;
padding-right:4px;
background-color:#fcfcfc;
/* for Firefox */
-moz-appearance: none;
/* for Chrome */
-webkit-appearance: none;
cursor:pointer;
}
#conf input[prop=width] { width:90%; }
#conf input[prop=height] { width:90%; }
.unit {
font-size:75%;
color:#44b3e2;
}
.value {
display:inline-block;
width:40px;
text-align:center;
}
.section, .room {
border-top:1px solid #ccc;
border-left:1px solid #ccc;
border-right:1px solid #ccc;
text-align:left;
}
.section-heading, .room-heading {
background-color:#eee;
padding:10px;
text-align:left;
cursor:pointer;
}
.room-elements {
background-color:#eee;
padding:0px 10px 10px 10px;
}
.room-elements-table {
}
/* .icon {
cursor:pointer;
width:11px;
padding:2px;
} */
.center { text-align:center; }
.add-element { cursor:pointer; }