Mercurial > owls
comparison Owls.css.php @ 0:3021ce32ee14 owls-0.5
begin of using hg for owls
author | "Meillo r e t u r n s <meillo@marmaro.de>" |
---|---|
date | Sun, 03 Dec 2006 22:32:13 +0100 |
parents | |
children | ab74e95a8040 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:3021ce32ee14 |
---|---|
1 <?php | |
2 header('Content-Type: text/css; charset=utf8'); | |
3 | |
4 // Caching verhindern | |
5 header('Expires: Thu, 05 Apr 1984 04:47:00 GMT'); | |
6 header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); | |
7 header('Cache-Control: no-store'); | |
8 header('Pragma: no-cache'); | |
9 echo('/* Anti-Caching: '.microtime()." */\r\n"); | |
10 | |
11 | |
12 // colors | |
13 $cProject = '#96c'; | |
14 | |
15 $cBackgroundGlobal = '#666'; | |
16 //$cBackgroundContent = '#666'; //eee | |
17 | |
18 $cBorderGlobal = '#000'; | |
19 | |
20 $cTextH1 = '#aaa'; | |
21 | |
22 $cLinkHover = $cProject; | |
23 | |
24 $cNav = '#333'; | |
25 | |
26 | |
27 $mContentMinHeight = '22em'; | |
28 | |
29 $mNavWidth = '12em'; | |
30 | |
31 | |
32 ?> | |
33 | |
34 | |
35 | |
36 /*#### Standard ############################################################*/ | |
37 body { | |
38 font-family: sans-serif; | |
39 margin: 30px 0; | |
40 text-align: center; | |
41 background-color: <?php echo $cBackgroundGlobal ?>; | |
42 } | |
43 | |
44 | |
45 #websiteContainer { | |
46 width: 760px; | |
47 margin: 0 auto; | |
48 text-align: left; | |
49 } | |
50 | |
51 #banner { | |
52 display: block; | |
53 border: 1px solid <?php echo $cBorderGlobal ?>; | |
54 } | |
55 | |
56 | |
57 #content { | |
58 margin-left: <?php echo $mNavWidth; ?>; | |
59 padding: 1em; | |
60 } | |
61 | |
62 | |
63 #edit input, | |
64 #edit select, | |
65 #edit textarea { | |
66 font-family: sans-serif; | |
67 font-size: 0.8em; | |
68 } | |
69 | |
70 | |
71 p { | |
72 text-align: justify; | |
73 } | |
74 | |
75 | |
76 a { | |
77 text-decoration: underline; | |
78 } | |
79 a:link { | |
80 color: #000; | |
81 } | |
82 a:visited { | |
83 color: #aaa; | |
84 } | |
85 a:active, | |
86 a:hover { | |
87 color: <?php echo $cLinkHover; ?>; | |
88 } | |
89 | |
90 | |
91 img { | |
92 border: none; | |
93 } | |
94 | |
95 .small { | |
96 font-size: 0.8em; | |
97 } | |
98 | |
99 | |
100 | |
101 | |
102 | |
103 | |
104 | |
105 | |
106 | |
107 #nav { | |
108 float: left; | |
109 width: <?php echo $mNavWidth; ?>; | |
110 padding: 0.5em 2em 1em 0.5em; | |
111 margin: 2.5em 0 1em 0; | |
112 font-size: 0.8em; | |
113 } | |
114 | |
115 #nav ul { | |
116 padding-left: 1em; | |
117 /* border: 1px solid #060; */ | |
118 } | |
119 | |
120 #nav li { | |
121 padding: 1px; | |
122 margin: 0; | |
123 /* border: 1px solid #006; */ | |
124 } | |
125 | |
126 #nav a { | |
127 text-decoration: none; | |
128 color: <?php echo $cTextH1; ?>; | |
129 } | |
130 #nav a:link, | |
131 #nav a:visited { | |
132 text-decoration: none; | |
133 } | |
134 #nav a:active, | |
135 #nav a:hover { | |
136 color: <?php echo $cLinkHover; ?>; | |
137 text-decoration: none; | |
138 } | |
139 | |
140 #selected:link, | |
141 #selected:visited { | |
142 color: <?php echo $cBorderGlobal; ?>; | |
143 } | |
144 #nav #selected:hover { | |
145 color: <?php echo $cLinkHover; ?>; | |
146 } | |
147 | |
148 | |
149 li#orphans { | |
150 margin-top: 2em; | |
151 font-style: italic; | |
152 color: #aaa; | |
153 } | |
154 | |
155 li#login { | |
156 margin-top: 3em; | |
157 } | |
158 #login input { | |
159 background-color: transparent; | |
160 border: none; | |
161 border-left: #555 1px solid; | |
162 display: block; | |
163 font-size: 0.8em; | |
164 margin-bottom: 2px; | |
165 padding-left: 4px; | |
166 } | |
167 | |
168 | |
169 | |
170 | |
171 .ctrl { | |
172 text-align: right; | |
173 font-size: 0.8em; | |
174 } | |
175 .ctrl a { | |
176 margin-left: 1em; | |
177 color: #eee; | |
178 } | |
179 | |
180 | |
181 | |
182 | |
183 | |
184 | |
185 | |
186 | |
187 /*#### BBCode ##############################################################*/ | |
188 | |
189 .quote1 { | |
190 border:1px solid #c0c0c0; | |
191 margin:5px; | |
192 padding:5px; | |
193 } | |
194 .quote2 { | |
195 border:1px solid #c0c0c0; | |
196 margin:5px; | |
197 margin-bottom:0px; | |
198 padding:5px; | |
199 } | |
200 .quote0 { | |
201 color: #000; | |
202 font-size: 0.8em; | |
203 } | |
204 | |
205 ul { | |
206 list-style: none; | |
207 margin-left: 0; | |
208 padding-left: 1em; | |
209 } | |
210 li { | |
211 margin-left: 1em; | |
212 padding-left: 0; | |
213 /*list-style-image: url(Pics/Bullet.gif);*/ | |
214 } | |
215 |