style.css
1.79 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
body, td, tr, li {
font-family: Verdana, Arial, Helvetica, sans-serif;
}
body {
font-size: 12px;
margin: 0px;
}
#spinner {
z-index: 1000;
position: absolute;
left: 50%;
margin-left: -16px;
top: 200px;
}
#header {
border-bottom: 1px solid black;
padding: 0.5em;
}
#menu {
float: right;
margin-right: 1em;
margin-top: 1em;
}
#content {
padding: 1em;
}
#footer {
text-align: center;
border-top: 1px solid black;
}
#notice, #errorExplanation {
border: 1px solid black;
margin-top: 1em;
margin-left: 30%;
margin-right: 30%;
padding: 0.5em;
}
#box_1, #box_2, #box_3 {
margin: 10px;
padding: 0px;
background: white;
}
/* Box 1 is the main area */
#box_1 {
margin-left: 220px;
margin-right: 220px;
}
/* Box 2 on the left side */
#box_2 {
width: 200px;
position: absolute;
left: 0px;
top: 57px;
padding: 0px;
}
/* Box 3 on the right side */
#box_3 {
width: 200px;
position: absolute;
right: 0px;
top: 57px;
padding: 0px;
}
/* blocks */
div.block {
border: 1px solid black;
margin-bottom: 1em;
}
/* design_editor stuff */
#design_editor #box_2,
#design_editor #box_3 {
top: 88px;
}
#design_editor #box_1 div,
#design_editor #box_2 div,
#design_editor #box_3 div {
border: 1px solid black;
list-style: none;
margin: 0px;
padding: 2px;
margin-top: 3px;
}
#design_editor #design_editor_selectors {
text-align: center;
border: 1px solid black;
}
#design_editor #design_editor_selectors ul {
padding: 2px;
margin: 2px;
}
#design_editor #design_editor_selectors li {
list-style: none;
display: inline;
}
#design_editor .hover {
border: 1px dashed black;
background: #ffd;
}
#design_editor ul {
padding: 2px;
margin: 2px;
}
#design_editor li {
padding: 2px;
margin: 2px;
list-style: none;
border: 1px solid gray;
}