website diff slitaz.css @ rev 49

Add Security to Handbook (en)
author Paul Issott <paul@slitaz.org>
date Sun May 18 22:50:22 2008 +0000 (2008-05-18)
parents
children 6d0e9850db1e
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/slitaz.css	Sun May 18 22:50:22 2008 +0000
     1.3 @@ -0,0 +1,341 @@
     1.4 +/*
     1.5 +	CSS style for SliTaz GNU/Linux website
     1.6 +	www.slitaz.org - (c) 2007 Pankso
     1.7 +*/
     1.8 +
     1.9 +body {
    1.10 +	background: #222222;
    1.11 +	color: black;
    1.12 +	font: 13px sans-serif, vernada, arial;
    1.13 +	margin: 0;
    1.14 +	padding-bottom: 100%;
    1.15 +}
    1.16 +
    1.17 +/* Accessibility */
    1.18 +
    1.19 +#access {
    1.20 +	position: absolute;
    1.21 +	top: 1px;
    1.22 +	right: 6px;
    1.23 +	text-align: right;
    1.24 +	width: 100%;
    1.25 +	margin: 0;
    1.26 +	font-size: 12px;
    1.27 +	font-weight: bold;
    1.28 +}
    1.29 +
    1.30 +#access a {
    1.31 +	background: inherit;
    1.32 +	color: #222222;
    1.33 +	text-decoration: none;
    1.34 +}
    1.35 +
    1.36 +#access a:hover {
    1.37 +	background: inherit;
    1.38 +	color: #EDEDED;
    1.39 +}
    1.40 +
    1.41 +/* Header and title */
    1.42 +
    1.43 +#header{
    1.44 +	background: #f0ba08 url(pics/website/header.png) repeat-x top;
    1.45 +	color: black;
    1.46 +	width: 100%;
    1.47 +	height: 50px ;
    1.48 +	border-top: 1px solid black;
    1.49 +	border-bottom: 1px solid black;
    1.50 +	margin-bottom: 30px;
    1.51 +}
    1.52 +
    1.53 +#titre{
    1.54 +	font-size: 16px;
    1.55 +	font-weight: bolder ;
    1.56 +	margin-left: 232px;
    1.57 +	margin-top: 4px;
    1.58 +	padding-top: 25px ;
    1.59 +}
    1.60 +
    1.61 +#logo {
    1.62 +	position: absolute;
    1.63 +	float: left;
    1.64 +	margin-left: 32px;
    1.65 +	margin-right: 20px;
    1.66 +	margin-top: 0px;
    1.67 +}
    1.68 +
    1.69 +/* Navigation */
    1.70 +
    1.71 +#nav {
    1.72 +	position: absolute;
    1.73 +	top: 100px;
    1.74 +	right: 6px;
    1.75 +	background: #eaeaea url(pics/website/nav-tr.png) no-repeat top right;
    1.76 +	color: black;
    1.77 +	float: right;
    1.78 +	width: 152px;
    1.79 +	line-height: 1.3em;
    1.80 +	text-align: left;
    1.81 +	font-size: 12px;
    1.82 +	font-weight: bold;
    1.83 +}
    1.84 +
    1.85 +#nav_top {
    1.86 +	background: transparent url(pics/website/nav-tl.png) no-repeat top left;
    1.87 +	height: 12px;
    1.88 +}
    1.89 +
    1.90 +#nav_bottom {
    1.91 +	background: transparent url(pics/website/nav-bl.png) no-repeat bottom left;
    1.92 +	height: 12px;
    1.93 +}
    1.94 +
    1.95 +#nav_bottom_img {
    1.96 +	background: transparent url(pics/website/nav-br.png) no-repeat bottom right;
    1.97 +	height: 12px;
    1.98 +}
    1.99 +
   1.100 +#nav ul{
   1.101 +	list-style-type: none;
   1.102 +	margin: 0px 0px 0px 6px;
   1.103 +	padding: 2px;
   1.104 +}
   1.105 +
   1.106 +#nav li {
   1.107 +	display: inline;
   1.108 +}
   1.109 +
   1.110 +#nav a {
   1.111 +	color: #3E1220;
   1.112 +	background: inherit;
   1.113 +	display: block;
   1.114 +	padding: 0.5px;
   1.115 +	text-decoration: none;
   1.116 +}
   1.117 +
   1.118 +#nav a:hover {
   1.119 +	color: #DF8F06;
   1.120 +	text-decoration: none;
   1.121 +	display: block;
   1.122 +}
   1.123 +
   1.124 +/* Page content */
   1.125 +
   1.126 +#content, #content_bottom, #content_top {
   1.127 +	background: white;
   1.128 +	color: black;
   1.129 +	text-align: justify;
   1.130 +}
   1.131 +
   1.132 +#content_top {
   1.133 +	height: 14px;
   1.134 +	margin: 0px 100px 0px 100px;
   1.135 +}
   1.136 +
   1.137 +#content {
   1.138 +	height: auto;
   1.139 +	margin: -6px 100px 0px 100px;
   1.140 +	padding: 0px 72px 72px 72px;
   1.141 +	/*background: white;
   1.142 +	color: #333333;*/
   1.143 +}
   1.144 +
   1.145 +#content_bottom {
   1.146 +	height: 14px;
   1.147 +	margin: 0px 100px 0px 100px;
   1.148 +	/*clear: both;*/
   1.149 +}
   1.150 +
   1.151 +#content li {
   1.152 +	line-height: 1.5em;
   1.153 +	text-align: left;
   1.154 +}
   1.155 +
   1.156 +/* Legal informations */
   1.157 +
   1.158 +#copy {
   1.159 +	font-size: 11px ;
   1.160 +	text-align: center ;
   1.161 +	background: transparent;
   1.162 +	color: #a8a8a8;
   1.163 +	padding-top: 10px;
   1.164 +}
   1.165 +
   1.166 +#copy a {
   1.167 +	background: inherit;
   1.168 +	color: #a8a8a8;
   1.169 +}
   1.170 +
   1.171 +#copy a:hover {
   1.172 +	background: inherit;
   1.173 +	color: #EDEDED;
   1.174 +}
   1.175 +
   1.176 +/* Footer */
   1.177 +
   1.178 +#bottom {
   1.179 +	float: none;
   1.180 +	background: inherit;
   1.181 +	color: black;
   1.182 +	width: auto;
   1.183 +	clear: both;
   1.184 +	padding: 0;
   1.185 +	margin: 0;
   1.186 +	text-align: center;
   1.187 +	vertical-align: middle;
   1.188 +}
   1.189 +
   1.190 +#news li {
   1.191 +	list-style-type: square;
   1.192 +	border-bottom: 1px dotted #BEBEBE;
   1.193 +	margin-left: -25px;
   1.194 +	padding: 4px 0px 4px 0px;
   1.195 +}
   1.196 +#gallery {
   1.197 +	text-align: center;
   1.198 +}
   1.199 +
   1.200 +/* CSS class. */
   1.201 +
   1.202 +.top_left, .top_right, .bottom_left, .bottom_right {
   1.203 +	height: 14px;
   1.204 +	width: 14px;
   1.205 +	color: white;
   1.206 +	background-color: #333333;
   1.207 +	background-repeat: no-repeat;
   1.208 +}
   1.209 +
   1.210 +.top_left {
   1.211 +	background-image: url(pics/website/content-tl.png);
   1.212 +	background-position: left top;
   1.213 +	position: absolute;
   1.214 +}
   1.215 +
   1.216 +.top_right {
   1.217 +	background-image: url(pics/website/content-tr.png);
   1.218 +	float: right;
   1.219 +}
   1.220 +
   1.221 +.bottom_left {
   1.222 +	background-image: url(pics/website/content-bl.png);
   1.223 +	position: absolute;
   1.224 +}
   1.225 +
   1.226 +.bottom_right {
   1.227 +	background-image: url(pics/website/content-br.png);
   1.228 +	float: right;
   1.229 +}
   1.230 +
   1.231 +/* HTML styles */
   1.232 +
   1.233 +h1 {
   1.234 +	color: #3E1220;
   1.235 +	background: inherit;
   1.236 +	text-align: left;
   1.237 +	margin: 0px 0px 16px -58px;
   1.238 +}
   1.239 +
   1.240 +h2 {
   1.241 +    color: #DF8F06;
   1.242 +    border-left: 10px solid #F3F3F3;
   1.243 +    padding: 4px 0px 4px 4px;
   1.244 +    margin: 0;
   1.245 +}
   1.246 +
   1.247 +h3 {
   1.248 +	font-weight: bold;
   1.249 +	color: #6c0023;
   1.250 +	background: inherit;
   1.251 +}
   1.252 +
   1.253 +a {
   1.254 +	text-decoration: underline;
   1.255 +	color: #0F314E;
   1.256 +	background: inherit;
   1.257 +}
   1.258 +
   1.259 +a:hover {
   1.260 +	text-decoration: none;
   1.261 +	color: blue;
   1.262 +	background: inherit;
   1.263 +}
   1.264 +
   1.265 +code {
   1.266 +	font-size: 12px;
   1.267 +	color: #669900;
   1.268 +	background: inherit;
   1.269 +}
   1.270 +
   1.271 +tt {
   1.272 +	color: #15EE15;
   1.273 +	background: inherit;
   1.274 +}
   1.275 +
   1.276 +img {
   1.277 +	border: 0pt none;
   1.278 +}
   1.279 +
   1.280 +fieldset {
   1.281 +	background: #E2ECf6;
   1.282 +	color: black;
   1.283 +	margin-top: 25px;
   1.284 +	border: 1px solid black;
   1.285 +}
   1.286 +
   1.287 +legend {
   1.288 +	border: 1px solid black;
   1.289 +	color: #6c0023;
   1.290 +	background: #eaeaea;
   1.291 +	font-weight: bold;
   1.292 +}
   1.293 +
   1.294 +pre {
   1.295 +	padding: 5px;
   1.296 +	color: black;
   1.297 +	background: #E1E0B0;
   1.298 +}
   1.299 +
   1.300 +pre.script {
   1.301 +	padding: 10px;
   1.302 +	color: black;
   1.303 +	background: #E8E8E8;
   1.304 +	border: 1px inset #606060;
   1.305 +}
   1.306 +
   1.307 +textarea {
   1.308 +	background: #E5E5E5;
   1.309 +	margin-top: 12px;
   1.310 +}
   1.311 +
   1.312 +input[type=submit] {
   1.313 +	background: #E5E5E5;
   1.314 +	color: black;
   1.315 +	border: 1px outset #111111;
   1.316 +	font-weight: bold;
   1.317 +}
   1.318 +
   1.319 +input[type=submit]:hover {
   1.320 +	background: #F3F3F3;
   1.321 +	color: black;
   1.322 +}
   1.323 +
   1.324 +/* Packages pages */
   1.325 +
   1.326 +.pkg_nav {
   1.327 +	border-top: 1px solid black;
   1.328 +	margin-top: 10px;
   1.329 +	padding-top: 10px;
   1.330 +}
   1.331 +
   1.332 +pre.package {
   1.333 +	padding: 0px;
   1.334 +	color: black;
   1.335 +	background: white;
   1.336 +}
   1.337 +
   1.338 +p.get {
   1.339 +	text-align: center;
   1.340 +	padding: 10px;
   1.341 +	color: black;
   1.342 +	background: #F3F3F3;
   1.343 +	border: 1px solid #DEDEDE;
   1.344 +}