slitaz-forge view play.slitaz.me/style.css @ rev 682

play.slitaz.me: use header
author Christophe Lincoln <pankso@slitaz.org>
date Sun Mar 19 01:29:50 2017 +0100 (2017-03-19)
parents 6f8ee67f014d
children 7b0187b47370
line source
1 /* CSS style for play.SliTaz.me */
3 html { min-height: 102%; }
4 body { font-size: 90%; margin: 0; }
5 h1 { margin: 0; padding: 8px; color: #fff; font-size: 20px; }
6 h1 a { color: #fff; text-decoration: none; }
7 h2 { color: #444; } h3 { color: #666; font-size: 140%; }
8 a { text-decoration: underline; color: #215090; }
9 a:hover { text-decoration: none; }
10 img { border: 0pt none; vertical-align: middle; }
11 pre {
12 overflow: auto;
13 font-size: 110%;
14 }
16 table { width: 100%; border-collapse: collapse; }
17 thead { font-weight: bold; }
18 tr { padding:.3em 1em; border-bottom: 1px solid #ddd; }
19 td { padding: 4px 0; }
21 /* Header */
23 header {
24 background: #222;
25 height: 40px;
26 border-bottom: 4px solid #682368;
27 }
29 header h1 {
30 margin: 0;
31 padding: 8px 0 0 42px;
32 width: 250px;
33 }
35 header h1 a {
36 color: white;
37 text-decoration: none;
38 font-size: 20px;
39 font-style: italic;
40 }
42 header h1 a:hover {
43 color: #afafaf;
44 }
46 /* Header links */
48 #network {
49 float: right;
50 padding: 14px 5px 0;
51 font-size: 12px;
52 }
54 #network a, #network span {
55 padding: 0 4px;
56 color: #fff;
57 font-weight: bold;
58 text-decoration: none;
59 }
61 #network a:hover, #network span { color: #afafaf; }
63 /* Logo */
65 #logo {
66 background: url(images/logo.png) no-repeat left;
67 position: absolute;
68 float: left;
69 left: 0px;
70 top: 0px;
71 width: 40px;
72 height: 40px;
73 }
75 /* Content */
77 #content {
78 margin: 40px auto;
79 padding: 0 20px;
80 text-align: justify;
81 max-width: 720px;
82 }
84 /* Round corner */
86 pre, img, .box, input[type="text"] {
87 -moz-border-radius: 4px;
88 -webkit-border-radius: 4px;
89 border-radius: 4px;
90 }
92 /* Footer */
94 #footer {
95 text-align: center;
96 padding: 20px;
97 border-top: 1px solid #ddd;
98 font-size: 90%;
99 }
101 #footer a { padding: 0 2px; }