summary refs log tree commit diff stats
path: root/theme/layouts/7/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'theme/layouts/7/style.css')
-rw-r--r--theme/layouts/7/style.css183
1 files changed, 183 insertions, 0 deletions
diff --git a/theme/layouts/7/style.css b/theme/layouts/7/style.css new file mode 100644 index 0000000..c16bdfa --- /dev/null +++ b/theme/layouts/7/style.css
@@ -0,0 +1,183 @@
1/* Body */
2
3body {
4 font-family: "Lucida Grande", "Arial", sans;
5 background-color: #111;
6}
7
8div#header {
9 width: 100%;
10 height: 200px;
11 background-image: url(http://fourisland.com/theme/images/header-repeat.png);
12 background-repeat: repeat-x;
13}
14
15div#banner {
16 width: 800px;
17 height: 200px;
18 margin: 0 auto;
19 background-image: url(http://fourisland.com/theme/images/header.png);
20 background-position: bottom right;
21}
22
23div#header a {
24 width: 800px;
25 height: 200px;
26 text-indent: -5000px;
27 display: block;
28}
29
30div#sidebar {
31 width: 21%;
32 float: left;
33}
34
35div#content {
36 width: 69%;
37 float: right;
38 padding-left: 5%;
39 padding-right: 5%;
40 padding-top: 20px;
41}
42
43div#content div.rounded {
44 padding: 10px;
45}
46
47div#footer {
48 width: 100%;
49 padding-top: 20px;
50 padding-bottom: 20px;
51}
52
53div#footer div.foot-module {
54 margin: 0 auto;
55 float: left;
56 width: 20%;
57 margin-left: 4%;
58 color: white;
59 font-size: 0.9em;
60}
61
62div#footer a {
63 color: white;
64 border-bottom: 1px dotted white;
65}
66
67div#footer div.foot-module ul {
68 list-style-type: square;
69}
70
71div#footer p {
72 font-size: 0.5em;
73 color: white;
74 text-align: center;
75}
76
77div#page-content {
78 background-color: #00ff00; /*#8B4513;*/
79 padding-bottom: 10px;
80}
81
82body#fourm div#actual-content {
83 font-size: 60%;
84}
85
86ul#navbar {
87 text-align: center;
88 margin-top: 0;
89}
90
91ul#navbar li {
92 display: inline;
93 font-family: Verdana, sans-serif;
94 font-size: 1.1em;
95}
96
97ul#navbar li+li:before {
98 content: " - ";
99}
100
101ul#navbar li img, ul#navbar li.active span {
102 display: none;
103}
104
105ul#navbar li.active img {
106 display: inline;
107 background-color: white;
108 outline: white solid .5em;
109 margin: 0 .5em;
110}
111
112/* Sidebar */
113
114div#rightbar {
115 float: left;
116 width: 270px; /*210*/
117}
118
119div.sidebar {
120 width: 250px; /*250*/ /*240*/ /*210*/
121 padding: 0 10px;
122 margin-bottom: 5px;
123}
124
125div.sidebar h3 {
126 font-family: Verdana, Helvetica, Arial, sans-serif;
127 margin: 5px 0 0 0;
128 font-weight: bold;
129 color: #333333;
130}
131
132div.sidebar p {
133 font-size: 0.8em;
134 margin: 3px 0;
135}
136
137div#sidebar ul.hatnav {
138 list-style-type: none;
139 padding-left: 24px;
140 margin-top: 0 !important;
141 line-height: normal !important;
142 list-style-image: none !important;
143}
144
145div#sidebar ul {
146 list-style-type: none;
147}
148
149div#sidebar ul.hatnav li {
150 text-align: right;
151 border: 1px gray solid;
152 padding-top: 2px;
153 padding-bottom: 2px;
154 background-color: #111;
155 color: white;
156}
157
158div#sidebar ul.hatnav li a {
159 display: block;
160 width: 95%;
161 color: white;
162}
163
164div#sidebar li img {
165 border: 0;
166 height: 16px;
167 width: 16px;
168}
169
170div#sidebar ul.hatnav li.active {
171 background-color:#00FF00;
172 border: none;
173}
174
175div#sidebar ul.hatnav li:hover {
176 background-color:yellow;
177 border: none;
178}
179
180div#sidebar ul li.active a, div#sidebar ul li a:hover {
181 color: black;
182}
183