slitaz-forge diff play.slitaz.me/style.css @ rev 671

Add default html page for play.slitaz.me
author Christophe Lincoln <pankso@slitaz.org>
date Thu Mar 16 19:25:53 2017 +0100 (2017-03-16)
parents
children ee64bc14ebd9
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/play.slitaz.me/style.css	Thu Mar 16 19:25:53 2017 +0100
     1.3 @@ -0,0 +1,92 @@
     1.4 +/* CSS style for SliTaz.me */
     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 +
    1.15 +/* Header */
    1.16 +
    1.17 +#header {
    1.18 +	background: #222;
    1.19 +	height: 40px;
    1.20 +	border-bottom: 4px solid #d66018;
    1.21 +}
    1.22 +
    1.23 +#header h1 {
    1.24 +	margin: 0;
    1.25 +	padding: 8px 0 0 42px;
    1.26 +	width: 250px;
    1.27 +}
    1.28 +
    1.29 +#header h1 a { 
    1.30 +	color: white; 
    1.31 +	text-decoration: none;
    1.32 +	font-size: 20px;
    1.33 +	font-style: italic;
    1.34 +}
    1.35 +
    1.36 +#header h1 a:hover { 
    1.37 +	color: #afafaf;
    1.38 +}
    1.39 +
    1.40 +/* Header links */
    1.41 +
    1.42 +#network { 
    1.43 +	float: right; 
    1.44 +	padding: 14px 5px 0; 
    1.45 +	font-size: 12px;
    1.46 +}
    1.47 +
    1.48 +#network a, #network span {
    1.49 +	padding: 0 4px;
    1.50 +	color: #fff; 
    1.51 +	font-weight: bold;
    1.52 +	text-decoration: none;
    1.53 +}
    1.54 +
    1.55 +#network a:hover, #network span { color: #afafaf; }
    1.56 +
    1.57 +/* Logo */
    1.58 +
    1.59 +#logo {
    1.60 +	background: url(images/logo.png) no-repeat left;
    1.61 +	position: absolute;
    1.62 +	float: left;
    1.63 +	left: 0px;
    1.64 +	top: 0px;
    1.65 +	width: 40px;
    1.66 +	height: 40px;
    1.67 +}
    1.68 +
    1.69 +/* Content */
    1.70 +
    1.71 +#content {
    1.72 +	margin: 40px auto;
    1.73 +	padding: 0 20px;
    1.74 +	text-align: justify;
    1.75 +	max-width: 720px;
    1.76 +}
    1.77 +
    1.78 +/* Round corner */
    1.79 +
    1.80 +pre, img, .box, input[type="text"] {
    1.81 +	-moz-border-radius: 4px;
    1.82 +	-webkit-border-radius: 4px;
    1.83 +	border-radius: 4px;
    1.84 +}
    1.85 +
    1.86 +/* Footer */
    1.87 +
    1.88 +#footer {
    1.89 +	text-align: center;
    1.90 +	padding: 20px;
    1.91 +	border-top: 1px solid #ddd;
    1.92 +	font-size: 90%;
    1.93 +}
    1.94 +
    1.95 +#footer a { padding: 0 2px; }