source: website/layout.css @ 1898

Last change on this file since 1898 was 1556, checked in by plg, 18 years ago

Make the announcement more obvious, with a red frame.

File size: 2.1 KB
Line 
1/* CSS stylesheet taken from http://forumoxalis.ehol.org */
2
3body {
4  line-height:1.2em;
5  width:760px;
6  margin:0 auto;
7  text-align:center;
8}
9
10body,td {
11  font-family:sans-serif;
12  font-size:12px;
13}
14
15input {
16  font-family:sans-serif;
17  font-size:10px;
18}
19
20a {
21  text-decoration:none;
22  font-weight:bold;
23  color:#005e89;
24}
25
26a:visited {
27  color:#895900;
28}
29
30a:hover {
31  text-decoration:underline;
32}
33
34a.forum {
35  font-weight:normal;
36  color:green;
37}
38
39a.download {
40  font-weight:normal;
41  color:#ff6600;
42}
43
44a.md5 {
45  font-family:monospace;
46  color:gray;
47}
48
49.menu {
50/*
51   background-color:#eeeeee;
52   border: 1px solid gray;
53*/
54}
55
56.menu a {
57   padding:2px;
58   border:1px solid gray;
59   background-color:white;
60}
61
62.menu a:hover {
63   background-color:gray;
64   color:white;
65   text-decoration:none;
66}
67
68div.category {
69  text-align:justify;
70  background-color:#eee;
71  border: 1px solid gray;
72  padding: 5px 10px 5px 10px;
73  margin-bottom:10px;
74}
75
76span.important {
77  font-weight:bold;
78}
79
80span.keyword {
81  font-weight:bold;
82}
83
84span.release_date {
85  color:#895900;
86}
87
88li {
89  text-align:left;
90}
91
92span.directory,span.file {
93  font-family:monospace;
94}
95
96span.directory {
97  color:blue;
98}
99
100span.command {
101  font-family:monospace;
102  color:gray;
103}
104
105span.language {
106  font-weight:bold;
107}
108
109th {
110  border-bottom:1px solid black;
111}
112
113th,td {
114  padding-left:5px;
115  padding-right:5px;
116  padding-top:2px;
117  padding-bottom:2px;
118}
119
120td.release {
121  text-align:center;
122  border-right:1px solid black;
123}
124
125td.sum_bottom {
126  border-top:1px solid black;
127}
128
129td.sum_right {
130  border-left:1px solid black;
131}
132
133td.count,td.sum_right,td.sum_bottom {
134  text-align:right;
135}
136
137th.top_left {
138  border-right:1px solid black;
139  border-bottom:1px solid black;
140}
141
142th.top_right {
143  border-bottom:1px solid black;
144  border-left:1px solid black;
145}
146
147td.bottom_left {
148  border-top:1px solid black;
149  border-right:1px solid black;
150}
151
152td.bottom_right {
153  border-top:1px solid black;
154  border-left:1px solid black;
155}
156
157P.announcement {
158  color: inherit;
159  text-align: left;
160  border: 1px solid #99c;
161  border-left: 6px solid #99c;
162  padding: 5px;
163  margin: 1em auto;
164  margin-bottom: 5px;
165
166  border-color: crimson;
167  background-color: #ffe1e1;
168}
Note: See TracBrowser for help on using the repository browser.