slitaz-forge view irc/src/html/style.css @ rev 325

irc: Updated irc sources. Thanks Trixar_za.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Aug 10 08:47:21 2012 +0000 (2012-08-10)
parents 1f7157de4e1f
children
line source
1 body {
2 margin: 0;
3 padding: 0;
4 background: #f1f1f1;
5 font: 13px sans-serif, vernada, arial;
6 }
8 .irc-date { color: gray; }
9 .irc-green { color: green; }
10 .irc-white { color: black; }
11 .irc-orange { color: #E0681E; }
12 .irc-yellow { color: #6D1670; }
13 .irc-grey { color: gray; }
14 .irc-red { color: red; }
15 a {text-decoration: none; color: #215090; }
16 a:hover {text-decoration: none; color: blue; }
17 img { border: 0pt none; vertical-align: middle; }
19 /* Header */
20 #header {
21 margin: 0;
22 width: 100%;
23 height: 40px;
24 position: relative;
25 background: #351a0a;
26 }
27 #header h1 {
28 margin: 0;
29 padding: 2px 0 0 42px;
30 width: 250px;
31 clear: none;
32 }
33 #header h1 a {
34 color: white;
35 text-decoration: none;
36 font-size: 20px;
37 font-style: italic;
38 }
39 #header h1 a:hover, #network a:hover { color: #cfcfcf; }
40 #header p { margin-bottom: 0; }
41 #header h1 a { color: #fff; text-decoration: none; }
43 /* Logo */
44 #logo {
45 background: url(logo.png) no-repeat left;
46 position: absolute;
47 float: left;
48 left: 0px;
49 top: 0px;
50 width: 40px;
51 height: 40px;
52 }
54 /* SliTaz Network */
55 #network {
56 float: right;
57 padding: 10px 5px 0;
58 font-size: 12px;
59 }
60 #network a {
61 padding: 0 6px;
62 color: #fff;
63 font-weight: bold;
64 text-decoration: none;
65 }
67 #content {
68 padding-top: 10px;
69 padding-left: 80px;
70 padding-bottom: 10px;
71 padding-right: 20px;
72 font-size: 13px;
73 background-color: #fff;
74 color: #000;
75 }
77 #contentbox {
78 padding-left: 80px;
79 padding-top: 1px;
80 padding-bottom: 1px;
81 font-size: 13px;
82 background: #d66018;
83 color: #333;
84 min-height: 120px;
85 }
86 #contentbox a {
87 color: #fff;
88 text-decoration: none;
89 }
90 #contentbox a:hover {
91 text-decoration: underline;
92 }
94 #footer {
95 background: #f1f1f1;
96 text-align: center;
97 border-top: 1px solid #ddd;
98 padding: 20px;
99 color: #666;
100 margin: 0;
101 clear: both;
102 }
103 #footer a { color: #666; padding: 0 2px; text-decoration: underline; }
104 #footer a:hover { text-decoration: none; }