owls

diff Owls.css.php @ 0:3021ce32ee14

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
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/Owls.css.php	Sun Dec 03 22:32:13 2006 +0100
     1.3 @@ -0,0 +1,215 @@
     1.4 +<?php
     1.5 +  header('Content-Type: text/css; charset=utf8');
     1.6 +
     1.7 +  // Caching verhindern
     1.8 +  header('Expires: Thu, 05 Apr 1984 04:47:00 GMT');
     1.9 +  header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
    1.10 +  header('Cache-Control: no-store');
    1.11 +  header('Pragma: no-cache');
    1.12 +  echo('/* Anti-Caching: '.microtime()." */\r\n");
    1.13 +
    1.14 +
    1.15 +  // colors
    1.16 +  $cProject           = '#96c';
    1.17 +
    1.18 +  $cBackgroundGlobal  = '#666';
    1.19 +  //$cBackgroundContent = '#666';  //eee
    1.20 +
    1.21 +  $cBorderGlobal      = '#000';
    1.22 +
    1.23 +  $cTextH1            = '#aaa';
    1.24 +
    1.25 +  $cLinkHover         = $cProject;
    1.26 +
    1.27 +  $cNav               = '#333';
    1.28 +
    1.29 +
    1.30 +  $mContentMinHeight  = '22em';
    1.31 +
    1.32 +  $mNavWidth          = '12em';
    1.33 +
    1.34 +
    1.35 +?>
    1.36 +
    1.37 +
    1.38 +
    1.39 +/*####  Standard  ############################################################*/
    1.40 +body {
    1.41 +  font-family: sans-serif;
    1.42 +  margin: 30px 0;
    1.43 +  text-align: center;
    1.44 +  background-color: <?php echo $cBackgroundGlobal ?>;
    1.45 +}
    1.46 +
    1.47 +
    1.48 +#websiteContainer {
    1.49 +  width: 760px;
    1.50 +  margin: 0 auto;
    1.51 +  text-align: left;
    1.52 +}
    1.53 +
    1.54 +#banner {
    1.55 +  display: block;
    1.56 +  border: 1px solid <?php echo $cBorderGlobal ?>;
    1.57 +}
    1.58 +
    1.59 +
    1.60 +#content {
    1.61 +  margin-left: <?php echo $mNavWidth; ?>;
    1.62 +  padding: 1em;
    1.63 +}
    1.64 +
    1.65 +
    1.66 +#edit input,
    1.67 +#edit select,
    1.68 +#edit textarea {
    1.69 +  font-family: sans-serif;
    1.70 +  font-size: 0.8em;
    1.71 +}
    1.72 +
    1.73 +
    1.74 +p {
    1.75 +  text-align: justify;
    1.76 +}
    1.77 +
    1.78 +
    1.79 +a {
    1.80 +  text-decoration: underline;
    1.81 +}
    1.82 +a:link {
    1.83 +  color: #000;
    1.84 +}
    1.85 +a:visited {
    1.86 +  color: #aaa;
    1.87 +}
    1.88 +a:active,
    1.89 +a:hover {
    1.90 +  color: <?php echo $cLinkHover; ?>;
    1.91 +}
    1.92 +
    1.93 +
    1.94 +img {
    1.95 +  border: none;
    1.96 +}
    1.97 +
    1.98 +.small {
    1.99 +  font-size: 0.8em;
   1.100 +}
   1.101 +
   1.102 +
   1.103 +
   1.104 +
   1.105 +
   1.106 +
   1.107 +
   1.108 +
   1.109 +
   1.110 +#nav {
   1.111 +  float: left;
   1.112 +  width: <?php echo $mNavWidth; ?>;
   1.113 +  padding: 0.5em 2em 1em 0.5em;
   1.114 +  margin: 2.5em 0 1em 0;
   1.115 +  font-size: 0.8em;
   1.116 +}
   1.117 +
   1.118 +#nav ul {
   1.119 +  padding-left: 1em;
   1.120 +/*  border: 1px solid #060; */
   1.121 +}
   1.122 +
   1.123 +#nav li {
   1.124 +  padding: 1px;
   1.125 +  margin: 0;
   1.126 +/*  border: 1px solid #006; */
   1.127 +}
   1.128 +
   1.129 +#nav a {
   1.130 +  text-decoration: none;
   1.131 +  color: <?php echo $cTextH1; ?>;
   1.132 +}
   1.133 +#nav a:link,
   1.134 +#nav a:visited {
   1.135 +  text-decoration: none;
   1.136 +}
   1.137 +#nav a:active,
   1.138 +#nav a:hover {
   1.139 +  color: <?php echo $cLinkHover; ?>;
   1.140 +  text-decoration: none;
   1.141 +}
   1.142 +
   1.143 +#selected:link,
   1.144 +#selected:visited {
   1.145 +  color: <?php echo $cBorderGlobal; ?>;
   1.146 +}
   1.147 +#nav #selected:hover {
   1.148 +  color: <?php echo $cLinkHover; ?>;
   1.149 +}
   1.150 +
   1.151 +
   1.152 +li#orphans {
   1.153 +  margin-top: 2em;
   1.154 +  font-style: italic;
   1.155 +  color: #aaa;
   1.156 +}
   1.157 +
   1.158 +li#login {
   1.159 +  margin-top: 3em;
   1.160 +}
   1.161 +#login input {
   1.162 +  background-color: transparent;
   1.163 +  border: none;
   1.164 +  border-left: #555 1px solid;
   1.165 +  display: block;
   1.166 +  font-size: 0.8em;
   1.167 +  margin-bottom: 2px;
   1.168 +  padding-left: 4px;
   1.169 +}
   1.170 +
   1.171 +
   1.172 +
   1.173 +
   1.174 +.ctrl {
   1.175 +  text-align: right;
   1.176 +  font-size: 0.8em;
   1.177 +}
   1.178 +.ctrl a {
   1.179 +  margin-left: 1em;
   1.180 +  color: #eee;
   1.181 +}
   1.182 +
   1.183 +
   1.184 +
   1.185 +
   1.186 +
   1.187 +
   1.188 +
   1.189 +
   1.190 +/*####  BBCode  ##############################################################*/
   1.191 +
   1.192 +.quote1 {
   1.193 +  border:1px solid #c0c0c0;
   1.194 +  margin:5px;
   1.195 +  padding:5px;
   1.196 +}
   1.197 +.quote2 {
   1.198 +  border:1px solid #c0c0c0;
   1.199 +  margin:5px;
   1.200 +  margin-bottom:0px;
   1.201 +  padding:5px;
   1.202 +}
   1.203 +.quote0 {
   1.204 +  color: #000;
   1.205 +  font-size: 0.8em;
   1.206 +}
   1.207 +
   1.208 +ul {
   1.209 +  list-style: none;
   1.210 +  margin-left: 0;
   1.211 +  padding-left: 1em;
   1.212 +}
   1.213 +li {
   1.214 +  margin-left: 1em;
   1.215 +  padding-left: 0;
   1.216 +  /*list-style-image: url(Pics/Bullet.gif);*/
   1.217 +}
   1.218 +