tazpanel rev 1

Add clean and raw style
author Christophe Lincoln <pankso@slitaz.org>
date Sat Apr 02 10:18:57 2011 +0200 (2011-04-02)
parents b9f87bfa0d75
children 4a672cf82ad2
files styles/default/favicon.ico styles/default/footer.html styles/default/header.html styles/default/images/tazpkg-installed.png styles/default/images/tazpkg.png styles/default/images/user.png styles/default/images/users.png styles/default/style.css
line diff
     1.1 Binary file styles/default/favicon.ico has changed
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/styles/default/footer.html	Sat Apr 02 10:18:57 2011 +0200
     2.3 @@ -0,0 +1,8 @@
     2.4 +
     2.5 +<!-- End of content-->
     2.6 +</div>
     2.7 +
     2.8 +<div id="footer"></div>
     2.9 +
    2.10 +</body>
    2.11 +</html>
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/styles/default/header.html	Sat Apr 02 10:18:57 2011 +0200
     3.3 @@ -0,0 +1,22 @@
     3.4 +<!DOCTYPE html>
     3.5 +<html xmlns="http://www.w3.org/1999/xhtml">
     3.6 +<head>
     3.7 +	<title>Tazpanel - %TITLE%</title>
     3.8 +	<meta charset="utf-8" />
     3.9 +	<link rel="shortcut icon" href="styles/default/favicon.ico" />
    3.10 +	<link rel="stylesheet" type="text/css" href="styles/default/style.css" />
    3.11 +</head>
    3.12 +<body>
    3.13 +
    3.14 +<h1>TazPanel - %TITLE%</h1>
    3.15 +
    3.16 +<div id="block">
    3.17 +	<a href="./">Panel</a>
    3.18 +	| <a href="tazpkg.cgi">Packages</a>
    3.19 +	| <a href="index.cgi?users">Users</a>
    3.20 +	| <a href="index.cgi?network">Network</a>
    3.21 +	| <a href="index.cgi?hardware">Hardware</a>
    3.22 +</div>
    3.23 +
    3.24 +<!-- Page content -->
    3.25 +<div id="content">
     4.1 Binary file styles/default/images/tazpkg-installed.png has changed
     5.1 Binary file styles/default/images/tazpkg.png has changed
     6.1 Binary file styles/default/images/user.png has changed
     7.1 Binary file styles/default/images/users.png has changed
     8.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     8.2 +++ b/styles/default/style.css	Sat Apr 02 10:18:57 2011 +0200
     8.3 @@ -0,0 +1,84 @@
     8.4 +/*
     8.5 +	CSS style for TazPanel - (C) 2011 SliTaz GNU/Linux
     8.6 +*/
     8.7 +
     8.8 +html { min-height:  102%; }
     8.9 +body { padding: 40px 80px; font: 13px sans; }
    8.10 +h1 { color: #4d4d4d; border-bottom: 1px dotted #ddd; }
    8.11 +h2 { color: #444; }
    8.12 +h3 { color: #666; font-size: 140%; }
    8.13 +h4 { color: #888; font-size: 120%; }
    8.14 +img { border: 0pt none; vertical-align: middle; padding: 0 6px 0 0;}
    8.15 +p { margin: 6px 0; }
    8.16 +ul { list-style-type: none; padding: 0; }
    8.17 +li { padding: 4px 0; }
    8.18 +a { text-decoration: none; color: #666; }
    8.19 +a:hover { color: #000; }
    8.20 +
    8.21 +pre { 
    8.22 +	background-color: #f8f8f8; 
    8.23 +	border: 1px solid #ddd; 
    8.24 +	padding: 10px;
    8.25 +	overflow: auto;
    8.26 +}
    8.27 +
    8.28 +input[type=submit] {
    8.29 +	padding: 2px 4px;
    8.30 +	background-color: #f1f1f1;
    8.31 +	border: 1px solid #ddd;
    8.32 +	cursor: pointer;
    8.33 +}
    8.34 +
    8.35 +input[type=submit]:hover {
    8.36 +	background-color: #ddd;
    8.37 +	border: 1px solid #999;
    8.38 +}
    8.39 +
    8.40 +input[type=text] { height: 16px; }
    8.41 +
    8.42 +table {
    8.43 +	background-color: #f8f8f8;
    8.44 +	border: 1px solid #ddd;
    8.45 +	margin: 10px 0 0;
    8.46 +	padding: 10px 10px 10px 0;
    8.47 +	width: 100%;
    8.48 +}
    8.49 +
    8.50 +.search { float: right; }
    8.51 +.search p { margin: -1px; }
    8.52 +
    8.53 +#list { margin: 20px 0 0; }
    8.54 +
    8.55 +td.pkg { max-width: 160px; }
    8.56 +td.desc { max-width: 300px; }
    8.57 +
    8.58 +#thead, thead {
    8.59 +	height: 10px;
    8.60 +	font-weight: bold;
    8.61 +}
    8.62 +
    8.63 +#block { float: left; }
    8.64 +
    8.65 +/* Content */
    8.66 +
    8.67 +#content { margin: 60px 0 0 }
    8.68 +
    8.69 +.box {
    8.70 +	margin: 10px 0;
    8.71 +	padding: 12px;
    8.72 +	background: #efefef;
    8.73 +	border: 1px solid #ddd;
    8.74 +}
    8.75 +
    8.76 +.debug {
    8.77 +	padding: 6px 20px;
    8.78 +	background-color: #ADD8E6;
    8.79 +	border: 1px solid #ddd;
    8.80 +}
    8.81 +
    8.82 +/* Round corner */
    8.83 +table, pre, input[type=submit], .debug, .box {
    8.84 +	-moz-border-radius: 4px;
    8.85 +	-webkit-border-radius: 4px;
    8.86 +	border-radius: 4px;
    8.87 +}