blob: c41e4eaf107bf67d4afd04932b07bd2d4552a3a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
/*
swat.css
Styles added to the samba.org stylesheets
specifically for SWAT.
*/
/* Forms
***********************************************************/
.logout {
text-align:right;
}
.logout form {
display:inline;
}
/* Tables
***********************************************************/
table.data {
border: 2px;
}
table.data th {
margin-top:20px;
text-align:left;
background-color: #F5C915;
}
table.data tr {
background-color: #E5C995;
text-align:left;
}
/* Temp fix for content sections that don't span the window.
This is not cross-browser and won't be the final way I handle
this, but I can't stand looking at small boxes while I work. :-) */
#content {
min-width:55%;
min-height:800px;
}
|