style.css
2.16 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
body {
margin: 0px;
padding: 0px;
font-family: Verdana, Sans-Serif;
font-size: 14px;
}
#frame {
background: #FFF url("../images/bg_content.png") top center repeat-y;
}
#content {
}
#header_content {
/* background: url("../images/bg_header.png") top center no-repeat; */
height: 135px;
}
#menu {
display: none;
}
#header {
border-left: 1px solid ;
border-bottom: 1px solid ;
border-right: 1px solid ;
border-color: blue;
background: white;
padding-top: 0.25em;
padding-left: 48px;
padding-right: 0.5em;
padding-bottom: 0.25em;
z-index: 100;
position: absolute;
left: 20px;
right: 20px;
-moz-border-radius-bottomleft: 15px;
-moz-border-radius-bottomright: 15px;
-webkit-border-radius-bottomleft: 15px;
-webkit-border-radius-bottomright: 15px;
background: #cdf url(../images/logo.png) top left no-repeat;
color: #006;
height: 48px;
}
#header a {
color: #006;
font-weight: bold;
font-size: smaller;
}
#boxes {
position: relative;
width: 800px;
left: 50%;
margin-left: -400px;
}
#box_3 {
width: 200px;
float: right;
}
#box_2 {
float: left;
width: 200px;
}
#box_1 {
margin-left: 205px;
margin-right: 205px;
}
#spinner {
z-index: 1000;
position: absolute;
left: 50%;
margin-left: -16px;
top: 200px;
}
#footer {
margin: 0px;
padding: 5px;
text-align: center;
clear: both;
background: #c5d0df url("../images/bg_footer.png") top left repeat-x;
}
/* Edition Mode */
#design_editor .block_list {
list-style: none;
margin: 0px;
padding: 3px;
}
#design_editor .box {
border: 2px solid transparent;
}
#design_editor .hover {
border: 2px dotted red;
background: #ff6;
}
#design_editor_toolbar {
padding: 5px;
}
#design_editor_toolbar h3 {
font-size: 10px;
background: #dfdfdf;
margin: 0px;
padding: 1px;
text-align: right;
color: #545454;
}
#design_editor_toolbar a {
font-size: 10px;
padding: 5px;
background: #dfdfdf;
color: black;
}
.design_editor_box_toolbar {
text-align: center;
margin: 5px;
background: #dfdfdf;
}
.design_editor_box_toolbar a {
display: inline;
width: 30px;
font-size: 10px;
padding: 2px;
background: #dfdfdf;
}
#design_editor_toolbar a:hover, .design_editor_box_toolbar a:hover {
background: #545454;
color: #ffffff;
}