slitaz-forge diff roadmap/style.css @ rev 348

mirror: add QR code
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Mar 20 18:32:44 2013 +0100 (2013-03-20)
parents
children b00fb2dc55ab
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/roadmap/style.css	Wed Mar 20 18:32:44 2013 +0100
     1.3 @@ -0,0 +1,98 @@
     1.4 +/* CSS style for SliTaz Cooker */
     1.5 +
     1.6 +html { min-height: 102%; }
     1.7 +body { font: 13px sans-serif, vernada, arial; margin: 0; }
     1.8 +h1 { margin: 0; padding: 8px; color: #fff; font-size: 20px; }
     1.9 +h1 a { color: #fff; text-decoration: none; }
    1.10 +h2 { color: #444; } h3 { color: #666; font-size: 140%; }
    1.11 +a { text-decoration: underline; color: #215090; }
    1.12 +a:hover { text-decoration: none; }
    1.13 +img { border: 0pt none; vertical-align: middle; }
    1.14 +pre {
    1.15 +	background-color: #f8f8f8;
    1.16 +	border: 1px solid #ddd;
    1.17 +	padding: 10px;
    1.18 +	overflow: auto;
    1.19 +	font-size: 96%;
    1.20 +}
    1.21 +
    1.22 +/* Header */
    1.23 +
    1.24 +#header {
    1.25 +	background: #351a0a;
    1.26 +	height: 40px;
    1.27 +	border-bottom: 8px solid #d66018;
    1.28 +}
    1.29 +
    1.30 +#header h1 {
    1.31 +	margin: 0;
    1.32 +	/* padding: 8px 0 0 42px; */
    1.33 +	width: 250px;
    1.34 +}
    1.35 +
    1.36 +#header h1 a { 
    1.37 +	color: white; 
    1.38 +	text-decoration: none;
    1.39 +	font-size: 20px;
    1.40 +	font-style: italic;
    1.41 +}
    1.42 +
    1.43 +#header h1 a:hover, #network a:hover { 
    1.44 +	color: #d66018;
    1.45 +}
    1.46 +
    1.47 +/* Header links */
    1.48 +
    1.49 +#network { 
    1.50 +	float: right; 
    1.51 +	padding: 10px 5px 0; 
    1.52 +	font-size: 12px;
    1.53 +}
    1.54 +
    1.55 +#network a {
    1.56 +	padding: 0 6px;
    1.57 +	color: #fff; 
    1.58 +	font-weight: bold;
    1.59 +	text-decoration: none;
    1.60 +}
    1.61 +
    1.62 +/* Content */
    1.63 +
    1.64 +#content {
    1.65 +	margin: 40px auto;
    1.66 +	text-align: justify;
    1.67 +	width: 720px;
    1.68 +}
    1.69 +
    1.70 +.important { background: #ffa400; }
    1.71 +
    1.72 +/* Progress bar */
    1.73 +
    1.74 +.pct { background: #9dff4a; padding: 2px 4px; }
    1.75 +
    1.76 +.pctbar {
    1.77 +	margin: 0;
    1.78 +	color: #666;
    1.79 +	background: #f1f1f1;
    1.80 +	border: 1px solid #ddd;
    1.81 +	overflow: hidden;
    1.82 +}
    1.83 +
    1.84 +/* Round corner */
    1.85 +
    1.86 +pre, .button, .pctbar {
    1.87 +	-moz-border-radius: 4px;
    1.88 +	-webkit-border-radius: 4px;
    1.89 +	border-radius: 4px;
    1.90 +}
    1.91 +
    1.92 +/* Footer */
    1.93 +
    1.94 +#footer {
    1.95 +	text-align: center;
    1.96 +	padding: 20px;
    1.97 +	border-top: 1px solid #ddd;
    1.98 +	font-size: 90%;
    1.99 +}
   1.100 +
   1.101 +#footer a { padding: 0 2px; }