slitaz-forge diff shop/shop.css @ rev 716

mirror/floppies: multi-format support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jul 23 16:41:12 2021 +0000 (2021-07-23)
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/shop/shop.css	Fri Jul 23 16:41:12 2021 +0000
     1.3 @@ -0,0 +1,135 @@
     1.4 +/*
     1.5 +	CSS style for SliTaz Shop - (C) 2012 SliTaz GNU/Linux
     1.6 +*/
     1.7 +
     1.8 +html {
     1.9 +	min-height:  102%;
    1.10 +}
    1.11 +
    1.12 +body {
    1.13 +	background: #ffffff;
    1.14 +	color: black;
    1.15 +	/* font: 13px sans-serif, vernada, arial; */
    1.16 +	margin: 0;
    1.17 +        width: 100%;
    1.18 +	min-width: 780px;
    1.19 +	height: 100%;
    1.20 +}
    1.21 +
    1.22 +a { text-decoration: underline; color: #215090; }
    1.23 +a:hover { text-decoration: none; color: blue; }
    1.24 +img { border: 0pt none; vertical-align: middle; }
    1.25 +h2 { color: #444; }
    1.26 +h3 { color: #666; font-size: 140%; }
    1.27 +h4 { color: #888; font-size: 120%; }
    1.28 +pre { 
    1.29 +	background-color: #f8f8f8; 
    1.30 +	border: 1px solid #ddd; 
    1.31 +	padding: 10px;
    1.32 +}
    1.33 +
    1.34 +/* Header */
    1.35 +
    1.36 +#header { 
    1.37 +	height: 40px; 
    1.38 +	background: #351a0a;
    1.39 +}
    1.40 +
    1.41 +#header h1 {
    1.42 +	margin: 0;
    1.43 +	padding: 8px 0 0 42px;
    1.44 +	width: 250px;
    1.45 +}
    1.46 +
    1.47 +#header h1 a { 
    1.48 +	color: white; 
    1.49 +	text-decoration: none;
    1.50 +	font-size: 20px;
    1.51 +	font-style: italic;
    1.52 +}
    1.53 +
    1.54 +#header h1 a:hover, #network a:hover { 
    1.55 +	color: #d66018;
    1.56 +}
    1.57 +
    1.58 +/* Logo */
    1.59 +
    1.60 +#logo {
    1.61 +	background: url(/users/3708000/3707031/624793/img/624793_logo.png) no-repeat left;
    1.62 +	position: absolute;
    1.63 +	float: left;
    1.64 +	left: 0px;
    1.65 +	top: 0px;
    1.66 +	width: 40px;
    1.67 +	height: 40px;
    1.68 +}
    1.69 +
    1.70 +/* SliTaz Network */
    1.71 +
    1.72 +#network { 
    1.73 +	float: right; 
    1.74 +	padding: 10px 5px 0; 
    1.75 +	font-size: 12px;
    1.76 +}
    1.77 +
    1.78 +#network a { 
    1.79 +	padding: 0 6px; 
    1.80 +	color: #fff; 
    1.81 +	font-weight: bold;
    1.82 +	text-decoration: none;
    1.83 +}
    1.84 +
    1.85 +/* Block */
    1.86 +
    1.87 +#block { 
    1.88 +	min-height: 8px; 
    1.89 +	background: #d66018; 
    1.90 +	padding: 0;
    1.91 +	/*border-bottom: 1px solid #ddd;*/
    1.92 +}
    1.93 +
    1.94 +/* Shop custom */
    1.95 +
    1.96 +#main {
    1.97 +	float: none;
    1.98 +	margin: 20px auto;
    1.99 +	width: 828px;
   1.100 +	min-width: 828px;
   1.101 +	height: auto;
   1.102 +	overflow: hidden;
   1.103 +}
   1.104 +
   1.105 +#menu { border-bottom: 8px solid #555; }
   1.106 +#menu a, #headerUserInformation a, #affiiliate a { text-decoration: none; }
   1.107 +#menu a:hover { background-color: #fff; }
   1.108 +/* We already have help in menu */
   1.109 +#headerUserInformation #userHelp { display: none; }
   1.110 +#headerUserInformation { 
   1.111 +	background: #f1f1f1;
   1.112 +	padding: 10px;
   1.113 +	border: 2px solid #ddd;
   1.114 +	width: auto;
   1.115 +}
   1.116 +
   1.117 +#frmFilter {
   1.118 +	width: 816px;
   1.119 +	-webkit-border-bottom-left-radius: 4px;
   1.120 +	-webkit-border-bottom-right-radius: 4px;
   1.121 +	-moz-border-radius-bottomleft: 4px;
   1.122 +	-moz-border-radius-bottomright: 4px;
   1.123 +	border-bottom-left-radius: 4px;
   1.124 +	border-bottom-right-radius: 4px;
   1.125 +}
   1.126 +
   1.127 +#menuFooter { 
   1.128 +	border: 2px solid #ddd; 
   1.129 +	background: #f1f1f1;
   1.130 +	padding: 10px;
   1.131 +	min-width: 802px;
   1.132 +}
   1.133 +
   1.134 +#headerUserInformation, #menuFooter, input, textarea, select {
   1.135 +	-moz-border-radius: 4px;
   1.136 +	-webkit-border-radius: 4px;
   1.137 +	border-radius: 4px;
   1.138 +}