-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css.bak
154 lines (127 loc) · 2.61 KB
/
style.css.bak
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
147
148
149
150
151
152
153
154
#comicstrip {
/*text-align: center;*/
margin-left: auto;
margin-right: auto;
}
*,html { margin:0; padding:0; }
body {
background: #eee; /* url('images/bg.png');*/
font-size: 100%;
}
a { color: #61809D; }
header, #gas, #page, #footer {
clear: both;
width: 950px;
margin: 0 auto 0 auto;
}
#header {
overflow: hidden;
padding: 3px 0 3px 0;
border-bottom: 1px solid #fff;
box-shadow: 3px 3px 6px -2px #bbb;
-moz-box-shadow: 3px 3px 6px -2px #bbb;
-webkit-box-shadow: 3px 3px 6px -2px #bbb;
-o-box-shadow: 3px 3px 6px -2px #bbb;
background: linear-gradient(#fff, #eee);
background: -moz-linear-gradient(center top,
#fff 30%, #eee 70%) repeat;
background: -webkit-gradient(linear,
left top, left bottom, from(#fff), to(#eee));
background: -o-linear-gradient(#fff, #eee);
}
header a#logo {
float: left; width: 146px; height: 34px;
/*background: url('images/cmxdb.png') top left no-repeat;*/
}
#gas {
margin: 15px auto 10px auto;
}
#page {
overflow: hidden;
background-color: #fff;
border: 1px solid #ccc;
-moz-box-shadow: 0 0 5px #ccc;
-webkit-box-shadow: 0 0 5px #ccc;
-o-box-shadow: 0 0 5px #ccc;
box-shadow: 0 0 5px #ccc;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
}
#content {
float: left;
width: 660px;
min-height: 500px;
padding: 10px;
color: #333;
background-color: #fff;
}
.comics {
margin-bottom: 10px;
}
#content h4 {
margin-bottom: 5px;
padding: 3px;
color: #696065;
font-weight: normal;
background-color: #EBECF0;
border: 1px solid #C5C5D1;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-o-border-radius: 5px;
border-radius: 5px;
}
#content hr {
margin: 4px 0 4px 0;
}
#content img {
/*min-width: 660px;
max-width: 660px;
text-align: center;
margin-left: auto;
margin-right: auto;*/
}
#sidebar {
float: right;
width: 250px;
padding: 10px;
background-color: #f5f5f5;
}
#sidebar select {
width: 250px;
height: 550px;
border: 1px solid #ccc;
}
#sidebar .group {
padding-top: 4px;
color: #777; text-align: center;
border-top: 1px solid #c4c5ca;
/*background: url('../images/hbg.png') repeat-x;*/
}
#sidebar .option {
padding: 2px 0 2px 0;
border-top: 1px solid #c4c5ca;
color: #444; text-align: left;
background-color: #eee;
}
#sidebar .option:hover {
background-color: #d4d5da;
color: #000;
}
#sidebar .button {
/*width: 250px;*/
width: 120px;
height: 30px;
margin-top: 10px;
}
#footer {
margin-bottom: 20px;
padding: 10px;
color: #777;
font: 90% sans-serif;
}
#footer a { color: #61809D; }
#footer a:hover { color: #11809A; }
.left { float: left; }
.right { float: right; }