slitaz-forge 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 eba0a55fb53b
children d31b82f4f7cd
files pangolin/pangolin play.slitaz.me/favicon.ico play.slitaz.me/images/logo.png play.slitaz.me/index.html play.slitaz.me/style.css slitaz.me/style.css
line diff
     1.1 --- a/pangolin/pangolin	Thu Mar 16 18:38:54 2017 +0100
     1.2 +++ b/pangolin/pangolin	Thu Mar 16 19:25:53 2017 +0100
     1.3 @@ -99,8 +99,11 @@
     1.4  		# Update play.slitaz.me
     1.5  		newline
     1.6  		boldify "Updating play.slitaz.org..."
     1.7 -		cd $REPOS/slitaz-dev-tools && hg update
     1.8 -		cp -rf play/web/* ${www}/play.slitaz.org/publc_html
     1.9 +		cd ${REPOS}/slitaz-forge && hg update
    1.10 +		cp -rf play/* ${www}/play.slitaz.org/publc_html
    1.11 +		# Tazcraft
    1.12 +		cd ${REPOS}/slitaz-dev-tools && hg update
    1.13 +		cp -rf tazcraft/cgi-bin ${www}/play.slitaz.org/publc_html/tazcraft
    1.14  		newline ;;
    1.15  	
    1.16  	up-pangolin)
     2.1 Binary file play.slitaz.me/favicon.ico has changed
     3.1 Binary file play.slitaz.me/images/logo.png has changed
     4.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     4.2 +++ b/play.slitaz.me/index.html	Thu Mar 16 19:25:53 2017 +0100
     4.3 @@ -0,0 +1,43 @@
     4.4 +<!DOCTYPE html>
     4.5 +<html xmlns="http://www.w3.org/1999/xhtml">
     4.6 +<head>
     4.7 +	<title>play.SliTaz.me</title>
     4.8 +	<meta charset="utf-8" />
     4.9 +    <link rel="shortcut icon" href="favicon.ico" />
    4.10 +    <link rel="stylesheet" type="text/css" href="style.css" />
    4.11 +</head>
    4.12 +<body>
    4.13 +
    4.14 +<!-- Header -->
    4.15 +<div id="header">
    4.16 +	<div id="logo"></div>
    4.17 +	<div id="network">
    4.18 +		<a href="http://www.slitaz.org">SliTaz.Org</a>
    4.19 +		<a href="http://pizza.slitaz.me">Pizza</a>
    4.20 +		<a href="http://play.slitaz.me">Play</a>
    4.21 +	</div>
    4.22 +	<h1><a href="http://slitaz.me">play.SliTaz.me</a></h1>
    4.23 +</div>
    4.24 +
    4.25 +<!-- Content -->
    4.26 +<div id="content">
    4.27 +
    4.28 +<p>
    4.29 +The play.slitaz.me domain is used for gaming services. Each SliTaz developer
    4.30 +can get access to the server and play together after a nice coding session :-)
    4.31 +The Minecraft server was initiate by Kayam Kid and his father Pankso. Welcome!
    4.32 +</p>
    4.33 +
    4.34 +<p>
    4.35 +SliTaz Minecraft server: <a href="tazcraft/">Tazcraft</a>
    4.36 +</p>
    4.37 +
    4.38 +<!-- End of content -->
    4.39 +</div>
    4.40 +
    4.41 +<div id="footer">
    4.42 +&copy; 2017 <a href="http://www.slitaz.org">SliTaz GNU/Linux</a>
    4.43 +</div>
    4.44 +
    4.45 +</body>
    4.46 +</html>
     5.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     5.2 +++ b/play.slitaz.me/style.css	Thu Mar 16 19:25:53 2017 +0100
     5.3 @@ -0,0 +1,92 @@
     5.4 +/* CSS style for SliTaz.me */
     5.5 +
     5.6 +html { min-height: 102%; }
     5.7 +body { font: 13px sans-serif, vernada, arial; margin: 0; }
     5.8 +h1 { margin: 0; padding: 8px; color: #fff; font-size: 20px; }
     5.9 +h1 a { color: #fff; text-decoration: none; }
    5.10 +h2 { color: #444; } h3 { color: #666; font-size: 140%; }
    5.11 +a { text-decoration: underline; color: #215090; }
    5.12 +a:hover { text-decoration: none; }
    5.13 +img { border: 0pt none; vertical-align: middle; }
    5.14 +
    5.15 +/* Header */
    5.16 +
    5.17 +#header {
    5.18 +	background: #222;
    5.19 +	height: 40px;
    5.20 +	border-bottom: 4px solid #d66018;
    5.21 +}
    5.22 +
    5.23 +#header h1 {
    5.24 +	margin: 0;
    5.25 +	padding: 8px 0 0 42px;
    5.26 +	width: 250px;
    5.27 +}
    5.28 +
    5.29 +#header h1 a { 
    5.30 +	color: white; 
    5.31 +	text-decoration: none;
    5.32 +	font-size: 20px;
    5.33 +	font-style: italic;
    5.34 +}
    5.35 +
    5.36 +#header h1 a:hover { 
    5.37 +	color: #afafaf;
    5.38 +}
    5.39 +
    5.40 +/* Header links */
    5.41 +
    5.42 +#network { 
    5.43 +	float: right; 
    5.44 +	padding: 14px 5px 0; 
    5.45 +	font-size: 12px;
    5.46 +}
    5.47 +
    5.48 +#network a, #network span {
    5.49 +	padding: 0 4px;
    5.50 +	color: #fff; 
    5.51 +	font-weight: bold;
    5.52 +	text-decoration: none;
    5.53 +}
    5.54 +
    5.55 +#network a:hover, #network span { color: #afafaf; }
    5.56 +
    5.57 +/* Logo */
    5.58 +
    5.59 +#logo {
    5.60 +	background: url(images/logo.png) no-repeat left;
    5.61 +	position: absolute;
    5.62 +	float: left;
    5.63 +	left: 0px;
    5.64 +	top: 0px;
    5.65 +	width: 40px;
    5.66 +	height: 40px;
    5.67 +}
    5.68 +
    5.69 +/* Content */
    5.70 +
    5.71 +#content {
    5.72 +	margin: 40px auto;
    5.73 +	padding: 0 20px;
    5.74 +	text-align: justify;
    5.75 +	max-width: 720px;
    5.76 +}
    5.77 +
    5.78 +/* Round corner */
    5.79 +
    5.80 +pre, img, .box, input[type="text"] {
    5.81 +	-moz-border-radius: 4px;
    5.82 +	-webkit-border-radius: 4px;
    5.83 +	border-radius: 4px;
    5.84 +}
    5.85 +
    5.86 +/* Footer */
    5.87 +
    5.88 +#footer {
    5.89 +	text-align: center;
    5.90 +	padding: 20px;
    5.91 +	border-top: 1px solid #ddd;
    5.92 +	font-size: 90%;
    5.93 +}
    5.94 +
    5.95 +#footer a { padding: 0 2px; }
     6.1 --- a/slitaz.me/style.css	Thu Mar 16 18:38:54 2017 +0100
     6.2 +++ b/slitaz.me/style.css	Thu Mar 16 19:25:53 2017 +0100
     6.3 @@ -1,4 +1,4 @@
     6.4 -/* CSS style for SliTaz IRC */
     6.5 +/* CSS style for SliTaz.me */
     6.6  
     6.7  html { min-height: 102%; }
     6.8  body { font: 13px sans-serif, vernada, arial; margin: 0; }