slitaz-forge view shop/shop.css @ rev 712

Prevent sending the Referer header
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 20 08:44:15 2020 +0000 (2020-08-20)
parents
children
line source
1 /*
2 CSS style for SliTaz Shop - (C) 2012 SliTaz GNU/Linux
3 */
5 html {
6 min-height: 102%;
7 }
9 body {
10 background: #ffffff;
11 color: black;
12 /* font: 13px sans-serif, vernada, arial; */
13 margin: 0;
14 width: 100%;
15 min-width: 780px;
16 height: 100%;
17 }
19 a { text-decoration: underline; color: #215090; }
20 a:hover { text-decoration: none; color: blue; }
21 img { border: 0pt none; vertical-align: middle; }
22 h2 { color: #444; }
23 h3 { color: #666; font-size: 140%; }
24 h4 { color: #888; font-size: 120%; }
25 pre {
26 background-color: #f8f8f8;
27 border: 1px solid #ddd;
28 padding: 10px;
29 }
31 /* Header */
33 #header {
34 height: 40px;
35 background: #351a0a;
36 }
38 #header h1 {
39 margin: 0;
40 padding: 8px 0 0 42px;
41 width: 250px;
42 }
44 #header h1 a {
45 color: white;
46 text-decoration: none;
47 font-size: 20px;
48 font-style: italic;
49 }
51 #header h1 a:hover, #network a:hover {
52 color: #d66018;
53 }
55 /* Logo */
57 #logo {
58 background: url(/users/3708000/3707031/624793/img/624793_logo.png) no-repeat left;
59 position: absolute;
60 float: left;
61 left: 0px;
62 top: 0px;
63 width: 40px;
64 height: 40px;
65 }
67 /* SliTaz Network */
69 #network {
70 float: right;
71 padding: 10px 5px 0;
72 font-size: 12px;
73 }
75 #network a {
76 padding: 0 6px;
77 color: #fff;
78 font-weight: bold;
79 text-decoration: none;
80 }
82 /* Block */
84 #block {
85 min-height: 8px;
86 background: #d66018;
87 padding: 0;
88 /*border-bottom: 1px solid #ddd;*/
89 }
91 /* Shop custom */
93 #main {
94 float: none;
95 margin: 20px auto;
96 width: 828px;
97 min-width: 828px;
98 height: auto;
99 overflow: hidden;
100 }
102 #menu { border-bottom: 8px solid #555; }
103 #menu a, #headerUserInformation a, #affiiliate a { text-decoration: none; }
104 #menu a:hover { background-color: #fff; }
105 /* We already have help in menu */
106 #headerUserInformation #userHelp { display: none; }
107 #headerUserInformation {
108 background: #f1f1f1;
109 padding: 10px;
110 border: 2px solid #ddd;
111 width: auto;
112 }
114 #frmFilter {
115 width: 816px;
116 -webkit-border-bottom-left-radius: 4px;
117 -webkit-border-bottom-right-radius: 4px;
118 -moz-border-radius-bottomleft: 4px;
119 -moz-border-radius-bottomright: 4px;
120 border-bottom-left-radius: 4px;
121 border-bottom-right-radius: 4px;
122 }
124 #menuFooter {
125 border: 2px solid #ddd;
126 background: #f1f1f1;
127 padding: 10px;
128 min-width: 802px;
129 }
131 #headerUserInformation, #menuFooter, input, textarea, select {
132 -moz-border-radius: 4px;
133 -webkit-border-radius: 4px;
134 border-radius: 4px;
135 }