-
Notifications
You must be signed in to change notification settings - Fork 0
/
clarity.css
executable file
·214 lines (164 loc) · 4 KB
/
clarity.css
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
@charset "utf-8";
/* CSS Document */
html {
overflow-y: scroll;
}
body {
font-family: Tahoma, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #000000;
background-image: url(images/background-leaf.jpg);
background-repeat: no-repeat;
background-attachment: fixed;
}
/* ----- MAIN CONTAINER -----*/
#main-container {
width: 960px;
background-color: #D9E9A2;
margin: auto;
margin-top: 30px;
margin-bottom: 60px;
padding: 10px;
border-radius: 10px;
-moz-border-radius: 10px; /* Old Firefox */
box-shadow: 0 3px 15px #000000;
-moz-box-shadow: 5px 5px 12px -3px #4D4D4D; /* Old Firefox */
}
/* ----- HEADER ----- */
#header {
width: auto;
height: auto;
}
/* ----- NAVIGATION ----- */
#navigation {
width: auto;
height: auto;
border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px; /* Old Firefox */
background-color: #F6FAE8;
margin-top: 10px;
overflow: hidden;
}
.rollover a {
display: block;
text-indent: -9999px;
margin: auto;
cursor: pointer;
outline: transparent solid 0px;
float: left;
}
#navigation a {
height: 40px; /* Height of the visible portion of the button only */
width: 155px; /* Width of the button */
background-position: left 0px; /* This negative value should match the height above */
}
#navigation .current a {
float: left;
background-position: left -40px;
}
#navigation a:hover {
background-position: left -40px;
}
#home a {
background: url(images/nav/home-nav.jpg) no-repeat left top;
}
#about a {
background: url(images/nav/about-nav.jpg) no-repeat left top;
}
#services a {
background: url(images/nav/services-nav.jpg) no-repeat left top;
}
#faq a {
background: url(images/nav/faq-nav.jpg) no-repeat left top;
}
#contact a {
background: url(images/nav/contact-nav.jpg) no-repeat left top;
}
#blog a {
background: url(images/nav/blog-nav.jpg) no-repeat left top;
}
/* FAUX LAYOUT WRAPPER */
/*
#faux{
width:750px;
background:url(faux.gif) repeat-y;
overflow:auto;
margin-top:10px;
}
*/
/* ----- CONTAINER FOR SIDE BAR AND CONTENT----- */
#container {
margin-top: 7px;
width: auto;
min-height: 500px; /* for modern browsers */
height: auto !important; /* for modern browsers */
overflow: hidden;
}
/* ----- SIDE BAR ----- */
#side-bar-container {
width: 240px;
margin-right: 10px;
min-height: 500px; /* for modern browsers */
height: auto !important; /* for modern browsers */
float: left;
}
#left-bar-item {
margin-bottom: 7px;
width: auto;
height: auto !important; /* for modern browsers */
background-color: #F4FFDD;
padding: 10px;
overflow: hidden;
border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px; /* Old Firefox */
text-align: center;
line-height: 150%;
}
/* ----- MAIN CONTENT ----- */
#content {
width: auto;
min-height: 500px; /* for modern browsers */
height: auto !important; /* for modern browsers */
background-color: #F6FAE8;
padding: 10px 20px 10px 20px;
overflow: hidden;
border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px; /* Old Firefox */
line-height: 150%;
}
/* ----- FOOTER ----- */
#footer {
width: auto;
margin-top: 7px;
background-color: #9CC08A;
font-size: 11px;
padding: 0 10px;
overflow: hidden;
border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px; /* Old Firefox */
}
#footer p.left {
float: left;
}
#footer p.right {
float: right;
}
/* ----- PAGE SPECIFIC CSS ----- */
/* ----- FAQ ----- */
.faqLinks a:link {
text-decoration: none;
font-weight: bold;
color: #000000;
}
/* ----- HEADER -----*/
span.rndimgcnr {
-moz-border-radius: 15px 15px 15px 15px;
border-radius: 15px 15px 15px 15px;
-moz-box-shadow: 0 2px 10px #000000;
box-shadow: 0 2px 10px #000000;
display: block;
}
span.rndimgcnr img {
opacity: 0;
vertical-align: bottom;
}