slitaz-forge rev 437

Add placeholer for slitaz.me
author Christophe Lincoln <pankso@slitaz.org>
date Mon Jan 20 23:40:25 2014 +0100 (2014-01-20)
parents 8ae65a4e430a
children 190b0c888e7a
files slitaz.me/favicon.ico slitaz.me/images/logo.png slitaz.me/index.html slitaz.me/style.css
line diff
     1.1 Binary file slitaz.me/favicon.ico has changed
     2.1 Binary file slitaz.me/images/logo.png has changed
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/slitaz.me/index.html	Mon Jan 20 23:40:25 2014 +0100
     3.3 @@ -0,0 +1,37 @@
     3.4 +<!DOCTYPE html>
     3.5 +<html xmlns="http://www.w3.org/1999/xhtml">
     3.6 +<head>
     3.7 +	<title>SliTaz.me</title>
     3.8 +	<meta charset="utf-8" />
     3.9 +    <link rel="shortcut icon" href="favicon.ico" />
    3.10 +    <link rel="stylesheet" type="text/css" href="style.css" />
    3.11 +</head>
    3.12 +<body>
    3.13 +
    3.14 +<!-- Header -->
    3.15 +<div id="header">
    3.16 +	<div id="logo"></div>
    3.17 +	<div id="network">
    3.18 +		<a href="http://www.slitaz.org">SliTaz.Org</a>
    3.19 +		<a href="http://pizza.slitaz.me">Pizza</a>
    3.20 +	</div>
    3.21 +	<h1><a href="http://slitaz.me">SliTaz.me</a></h1>
    3.22 +</div>
    3.23 +
    3.24 +<!-- Content -->
    3.25 +<div id="content">
    3.26 +
    3.27 +<p>
    3.28 +The slitaz.me domain is used for personalized users services such as
    3.29 +the SliTaz online builder: <a href="pizza.slitaz.me">pizza.slitaz.me</a>
    3.30 +</p>
    3.31 +
    3.32 +<!-- End of content -->
    3.33 +</div>
    3.34 +
    3.35 +<div id="footer">
    3.36 +&copy; 2014 <a href="http://www.slitaz.org">SliTaz GNU/Linux</a>
    3.37 +</div>
    3.38 +
    3.39 +</body>
    3.40 +</html>
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/slitaz.me/style.css	Mon Jan 20 23:40:25 2014 +0100
     4.3 @@ -0,0 +1,92 @@
     4.4 +/* CSS style for SliTaz IRC */
     4.5 +
     4.6 +html { min-height: 102%; }
     4.7 +body { font: 13px sans-serif, vernada, arial; margin: 0; }
     4.8 +h1 { margin: 0; padding: 8px; color: #fff; font-size: 20px; }
     4.9 +h1 a { color: #fff; text-decoration: none; }
    4.10 +h2 { color: #444; } h3 { color: #666; font-size: 140%; }
    4.11 +a { text-decoration: underline; color: #215090; }
    4.12 +a:hover { text-decoration: none; }
    4.13 +img { border: 0pt none; vertical-align: middle; }
    4.14 +
    4.15 +/* Header */
    4.16 +
    4.17 +#header {
    4.18 +	background: #222;
    4.19 +	height: 40px;
    4.20 +	border-bottom: 4px solid #d66018;
    4.21 +}
    4.22 +
    4.23 +#header h1 {
    4.24 +	margin: 0;
    4.25 +	padding: 8px 0 0 42px;
    4.26 +	width: 250px;
    4.27 +}
    4.28 +
    4.29 +#header h1 a { 
    4.30 +	color: white; 
    4.31 +	text-decoration: none;
    4.32 +	font-size: 20px;
    4.33 +	font-style: italic;
    4.34 +}
    4.35 +
    4.36 +#header h1 a:hover { 
    4.37 +	color: #afafaf;
    4.38 +}
    4.39 +
    4.40 +/* Header links */
    4.41 +
    4.42 +#network { 
    4.43 +	float: right; 
    4.44 +	padding: 14px 5px 0; 
    4.45 +	font-size: 12px;
    4.46 +}
    4.47 +
    4.48 +#network a, #network span {
    4.49 +	padding: 0 4px;
    4.50 +	color: #fff; 
    4.51 +	font-weight: bold;
    4.52 +	text-decoration: none;
    4.53 +}
    4.54 +
    4.55 +#network a:hover, #network span { color: #afafaf; }
    4.56 +
    4.57 +/* Logo */
    4.58 +
    4.59 +#logo {
    4.60 +	background: url(images/logo.png) no-repeat left;
    4.61 +	position: absolute;
    4.62 +	float: left;
    4.63 +	left: 0px;
    4.64 +	top: 0px;
    4.65 +	width: 40px;
    4.66 +	height: 40px;
    4.67 +}
    4.68 +
    4.69 +/* Content */
    4.70 +
    4.71 +#content {
    4.72 +	margin: 40px auto;
    4.73 +	padding: 0 20px;
    4.74 +	text-align: justify;
    4.75 +	max-width: 720px;
    4.76 +}
    4.77 +
    4.78 +/* Round corner */
    4.79 +
    4.80 +pre, img, .box, input[type="text"] {
    4.81 +	-moz-border-radius: 4px;
    4.82 +	-webkit-border-radius: 4px;
    4.83 +	border-radius: 4px;
    4.84 +}
    4.85 +
    4.86 +/* Footer */
    4.87 +
    4.88 +#footer {
    4.89 +	text-align: center;
    4.90 +	padding: 20px;
    4.91 +	border-top: 1px solid #ddd;
    4.92 +	font-size: 90%;
    4.93 +}
    4.94 +
    4.95 +#footer a { padding: 0 2px; }