Skip to content

Commit cbfec46

Browse files
committed
mmbase style
1 parent 4bd3ac3 commit cbfec46

File tree

1 file changed

+212
-0
lines changed

1 file changed

+212
-0
lines changed

mmbase/style/css/mmbase.css

Lines changed: 212 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,212 @@
1+
/*
2+
CSS for MMBase
3+
@author Michiel Meeuwissen
4+
@version $Id: mmbase.css,v 1.13 2007-07-25 05:15:55 michiel Exp $;
5+
*/
6+
7+
html {
8+
background-color: white;
9+
color: black;
10+
}
11+
12+
body {
13+
font-family: Verdana, Arial, Helvetica, sans-serif;
14+
background-color: white;
15+
color: black;
16+
margin-left: 3%;
17+
margin-right: 3%;
18+
padding-left: 0pt;
19+
padding-right: 0pt;
20+
}
21+
22+
table {
23+
width: 100%;
24+
font-size: 9pt;
25+
border-bottom: none;
26+
border-top: none;
27+
border-left: solid thin white;
28+
border-right: none;
29+
border-collapse:separate;
30+
border-spacing: 1pt;
31+
32+
33+
}
34+
td.numeric {
35+
text-align: right;
36+
}
37+
38+
/* a basic body is a page not using a table */
39+
body.basic h1 {
40+
padding-left: 3%;
41+
background-color: #ddd;
42+
}
43+
body.basic p, table {
44+
margin-left: 3%;
45+
width: 94%;
46+
}
47+
48+
.intro {
49+
font-style: italic;
50+
}
51+
52+
td {
53+
padding: 3pt;
54+
}
55+
td p {
56+
57+
}
58+
th {
59+
background-color: #ddd;
60+
text-align: left;
61+
}
62+
63+
th.header,th.navigate {
64+
border-top: solid white 2ex;
65+
}
66+
tr.even{
67+
background-color: #eee;
68+
}
69+
70+
tr.footer td {
71+
border-top: solid thin black;
72+
border-left: none;
73+
border-right: none;
74+
border-collapse:collapse;
75+
}
76+
77+
.title,
78+
.subtitle {
79+
color: navy
80+
}
81+
82+
textarea.small {
83+
height: 6em;
84+
}
85+
textarea.big {
86+
height: 15em;
87+
}
88+
89+
a {
90+
text-decoration: none;
91+
}
92+
93+
a:link {
94+
color: blue;
95+
}
96+
97+
a:visited {
98+
color: purple;
99+
}
100+
101+
a:hover {
102+
/*
103+
color: red;
104+
text-decoration: underline;
105+
*/
106+
}
107+
108+
.data {
109+
border-bottom: solid thin #ddd;
110+
}
111+
.navigate {
112+
text-align: center;
113+
border-bottom: solid thin #ddd;
114+
}
115+
.linkdata {
116+
text-align: center;
117+
border-bottom: solid thin #ddd;
118+
}
119+
.multidata {
120+
background-color: #ddd;
121+
padding: 5pt;
122+
margin: 5pt;
123+
border: solid thin black;
124+
}
125+
126+
.currentmenuitem {
127+
color: navy;
128+
font-size: 1em;
129+
font-weight: bold;
130+
text-align: right;
131+
font-weight: bold;
132+
}
133+
134+
.menuitem {
135+
color: black;
136+
font-size: 1em;
137+
text-align: right;
138+
font-weight: bold;
139+
}
140+
141+
.link a img {
142+
border: none;
143+
}
144+
145+
.navigate img {
146+
border: none;
147+
}
148+
/* tabs */
149+
#tabnav {
150+
height: 20px;
151+
margin: 0;
152+
padding-left: 10px;
153+
background: url(/mmbase/style/images/tab_bottom.gif) repeat-x bottom;
154+
}
155+
156+
#tabnav li {
157+
margin: 0;
158+
padding: 0;
159+
display: inline;
160+
list-style-type: none;
161+
}
162+
163+
#tabnav a:link, #tabnav a:visited {
164+
float: left;
165+
background: #ddd;
166+
font-size: 10px;
167+
line-height: 14px;
168+
font-weight: bold;
169+
padding: 2px 10px 2px 10px;
170+
margin-right: 4px;
171+
border: 1px solid #000000;
172+
text-decoration: none;
173+
color: #666;
174+
}
175+
176+
#tabnav a:link.active, #tabnav a:visited.active {
177+
border-bottom: 1px solid #f3f3f3;
178+
background: #f3f3f3;
179+
color: #000000;
180+
}
181+
182+
#tabnav a:hover {
183+
background: #f3f3f3;
184+
}
185+
186+
.filelisting h1 {
187+
border-bottom: #666688 solid 2px;
188+
}
189+
190+
.filelisting table {
191+
background-color: #f3f3f3;
192+
border-left: #666688 solid 15px;
193+
border-right: #666688 solid 15px;
194+
margin-bottom: 20px;
195+
196+
}
197+
.filelisting td {
198+
border-bottom: solid 1px white;
199+
}
200+
201+
.filelisting .lastmodified {
202+
width: 20ex;
203+
}
204+
.filelisting .filesize {
205+
border-right: solid 1px black;
206+
width: 10ex;
207+
}
208+
209+
.filelisting h3 {
210+
text-align: right;
211+
border-top: #666688 solid 2px;
212+
}

0 commit comments

Comments
 (0)