summaryrefslogtreecommitdiffstats
path: root/skins/cavendish/basetemplate.css
blob: 7f0bedea280b7fb220a06b1bbf8f1c7390783cad (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/* mozilla.org Base Template Styles
 * Initial Design by Dave Shea
 * Severely tweaked by David Baron
 * Reorganized by fantasai
 * Large Changes for new Cavendish default by Daniel Burka and Steven Garrity
 */

/* Basic Structure */
	html, body {
		background: url("bg_ln_4.png") repeat-x scroll 0 0 transparent;
	}
	body {
		min-width: 610px;
		margin: 20px;
		background: url("cauldron_alpha_ln_1.png") no-repeat scroll -20px 200px transparent;
	}

	#container {
		/*max-width: 100%; /* default: 70em; */
		width: 980px;
		margin: 0 auto;
		background: #fff;
		border-radius: 10px;
		box-shadow: 0 0 6px #555555;
	}

	#mBody {
		clear: both;
		padding: 0 0 1em 0;
	}

	#side {
		float: left;
		width: 198px; /* default: 23% */
		margin-bottom: 1em;
		margin-left: 7px;
	}

	#mainContent {
		float: right;
		width: 740px; /* default: 75% */
		margin-bottom: 1em;
		margin-right: 10px;
	}
	.nomenu #mainContent {
		float: none;
		width: 100%;
	}
	.bodyleft {
		float: right !important;
		width: 75% !important;
	}
	#mainContent.right {
		float: left;
		width: 62%;
	}

	#side.right {
		float: right;
		width: 35%;
	}

/* Header */

	#header {
	    margin-bottom: 1em;
	}
	
	#header ul {
		margin: 0 0 1em 0;
		padding: 0;
		line-height: 1.5em;
	}

	#header li {
		display: inline;
		padding: 0 20px 0 0;
		margin: 0;
		white-space: nowrap;
	}

	/*#header h1 {
		margin-left: 180px;
	}*/

/* Sidebar */

	#getcd {
		margin: 1em 0 0 45px;
	}

/* Footer */

	#footer {
		clear: both;
		margin-top: 1em;
	}

	#footer ul {
		margin: 0 0 0.5em 0;
		padding: 0;
	}

	#footer li {
		display: inline;
		padding: 0 20px 0 0;
		margin: 0;
		white-space: nowrap;
	}

	#footer p {
		margin: 0.6em 0;
	}

/*accessibility tweaks*/
	.skipLink {
		position: absolute;
		left: -999px;
		width: 990px;
	}
	hr.hide {
		display: none;
	}