]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/shamino_com/shamino_com.css
boxed and bordered tables
[SourceForge/phpwiki.git] / themes / shamino_com / shamino_com.css
1 /**
2  * $Id$
3  *
4  * shamino.com style sheet based on the original Wiki
5  *
6  */
7 body {
8     font-family: sans-serif; 
9     font-weight: normal;
10     font-style: normal;
11     background-color: #ffffff;
12     position: absolute; 
13     top:0px;
14     left:0px;
15     visibility: visible; 
16     z-index: auto;
17     margin:0px; 
18 }
19
20 hr { 
21     height:0px; 
22     margin-left:10px;
23     margin-right:10px;
24 }
25
26 #content { 
27     font-size: 10pt;
28     font-family: sans-serif; 
29     font-weight: normal;
30     font-style: normal;
31     background-color: #ffffff;
32     padding: 1em 10px 1em 10px;
33 }
34
35 .wikitext, .wiki, p, form, ul, dd, dl, li, td { 
36     /*font-size: 10pt;*/
37     line-height: 150%;
38     color: #111111; 
39     margin: 0px;
40     padding: 0px;
41     list-style-type:none;
42 }
43
44 p, ul {
45     padding: 10px;
46     text-align: justify;
47     background-color:#ffffff;
48 }
49
50 dd {
51     font-size: 9pt;
52     text-align:right;
53     padding:0px;
54     margin:0px;
55     bottom:0px;
56 }
57
58 dl {
59     padding:0px;
60     margin:0px;
61     margin-top:14px;
62     bottom:0px;
63 }
64
65 li {
66   margin-left:0px;
67   margin-bottom:0px;
68 }
69
70 img {
71     margin:0px;
72     border:0px;
73     padding:0px;
74 }
75
76 table {
77 /*  position:relative;left:0px;top:0px; */
78   border: 0px;;
79   padding: 0px;
80   border-spacing: 0px;
81   margin: 0px;
82 }
83
84 td, th, tr, tt {
85   padding: 0px;
86   margin: 2px;
87   border: 0px;
88   border-spacing: 0px;
89 }
90
91 input.numeric { text-align: right; }
92 input {     
93   font-family: sans-serif; 
94   font-size: 10pt;
95   font-style: normal;
96   font-weight: normal;
97 }
98
99 textarea { 
100   text-decoration:none;
101   font-family: sans-serif; 
102   font-size: 10pt;
103   font-style: normal;
104   font-weight: normal;
105 }
106
107 h1, h2, h3, h4 { 
108   font-family: Lucida Grande, sans-serif; 
109   font-weight: normal;
110   font-style: normal;
111   margin:0px;
112   padding:0px; 
113   padding-top:10px;
114   text-decoration:none;
115   text-align:left;
116 }
117
118 a.wiki { font-weight:normal; }
119 a:link { font-weight:normal; color:#445566; text-decoration:none }
120 a:visited { font-weight:normal; color:#445566; text-decoration:none }
121 a:hover { font-weight:normal; color:#445566; text-decoration:underline }
122 a:active { font-weight:normal; color:#445566; text-decoration:underline }
123 a:focus { font-weight:normal; color:#445566; text-decoration:underline }
124
125 .main { padding: 0px; border: 0px; margin:0px; }
126 .maintable { padding: 0px; border: 0px; margin:0px; }
127 .menu { font-size: 9pt; padding: 10px; padding-top:0px; border: 0px; margin:0px; }
128 .box { background-color: #eeeeee; border: 1px solid #dcdcdc; color: #111111; padding: 0px; position: absolute; }
129 .bar { background-color: #eeeeee; color: #111111; font-weight: bold; padding: 2px 1em 2px 1em; }
130
131 .wikilink { color: #5555CC; text-decoration:none; font-style:normal; }
132 .wikinavbar { border-bottom: 1px #999999 solid; padding: 2px; font-size: 8pt; }
133 .toolbar { border-top: 1px #999999 solid; padding: 2px; font-size: 8pt; }
134 .debug { padding: 2px; margin-left:10px; font-size: 8pt; }
135 .wikinavbar a.wikilink, .toolbar a.wikilink, .editdate, #xhtml-validator a.wikilink { font-size: 8pt; }
136 #content a.wiki { font-size: 9pt; }
137 .wikiaction { color: #5555CC; text-decoration:none; font-style:normal; }
138 .wiki { color: #5555CC; text-decoration:none; font-style:normal; }
139 .backlinks { color: #5555CC; text-decoration:none; font-style:normal; }
140 /* .header { font-size: x-small; border-top: 1px #999999 solid; padding:10px; padding-top:5px; padding-bottom:5px; } */
141
142 #header { font-size: 8pt; margin-left:4px; }
143 .signin, .signin a.wiki, .signin a.wikiaction { font-size: 8pt; }
144 .top { font-size: 75%; margin:4px; }
145 .plugin { margin:0px; }
146
147 div#logo {
148   float: right;
149 }
150
151 div.boxright { width: 200px; right: 10px; padding: 0.5em; float: right; border: thin solid #888888; padding: 0.5em; }
152
153 /**
154  * Search Results
155  */
156 .search-context { background: white; font-style: oblique; }
157 .search-term {
158   background: yellow;
159   font-weight: normal;
160 }
161
162 /*
163  * table class="boxed"
164  * will put a border around the table (but not around the cells)
165  *
166  * table class="bordered"
167  * will put a border around the table and the cells
168  *
169  * In both cases, the caption will be bold and centered under the table
170  *
171  * In both cases, the headers (th) will have a "#d8d8d8" background
172  */
173
174 table.boxed, table.bordered, table.bordered th, table.bordered td {
175     border-width: 1px;
176     border-style: solid;
177     border-collapse: collapse;
178     vertical-align: top;
179 }
180
181 table.boxed td, table.bordered td,
182 table.boxed th, table.bordered th {
183     padding-left: 5px;
184     padding-right: 5px;
185     padding-top: 0px;
186     padding-bottom: 0px;
187 }
188
189 table.boxed caption, table.bordered caption {
190     text-align: center;
191     font-weight: bold;
192     caption-side: bottom;
193     padding-top: 0.8em;
194 }
195
196 table.boxed th,
197 table.bordered th,
198     font-weight: bold;
199     background-color: #d8d8d8;
200 }
201