source: gs2-extensions/afrepo/trunk/src/src/html/css/core-style.css@ 27984

Last change on this file since 27984 was 27984, checked in by davidb, 11 years ago

Next round of changes after fruther testing and extra example development

  • Property svn:executable set to *
File size: 3.3 KB
Line 
1
2a {
3 color: rgb(166, 85,0);
4}
5
6a:hover {
7 color: rgb(255, 131, 0);
8}
9
10h1 {
11 font-family: "Pacifico",Georgia,serif;
12}
13
14h2,h3 {
15 color: rgb(255, 131, 0);
16}
17
18
19#navigation li.selected a {
20 background-color: #0055A6;
21 /* background-color: #A65500; */
22 /* color: #FFBB73; */
23}
24
25
26
27body {
28 margin: 0; padding: 0;
29 clear: both;
30 float: left;
31 width: 100%;
32 margin: 0 0 30px;
33
34 background: #e0e0e0;
35 font: 14px/1.6 arial, verdana, sans-serif;
36
37
38 /* Illinois background */
39 /* background:#CFCFCF url("css-images/bg-squares.jpg") repeat scroll 0 0; */
40
41 background-image: url("css-images/bg-squares.jpg");
42
43}
44
45
46#container {
47 margin: 0 auto;
48 min-width: 700px; max-width: 1000px;
49 background: white;
50}
51
52#header {
53 background: #7ECDF3;
54/*
55 //background: #FFC740;
56 //background: #CC0001;
57 //color: black;
58*/
59 color: white;
60 width: 100%;
61}
62
63#header h1 {
64 padding: 18px;
65 /* padding: 20px; */
66 margin: 0;
67 font-weight: 200;
68 font-size: 42px;
69 font-family: "Pacifico",Georgia,serif;
70
71 /*
72font-family: Arial,"Helvetica Neue",Helvetica,"Nimbus Sans L",FreeSans,"Liberation Sans",sans-serif;
73*/
74
75/*
76 //font-family: verdana, sans-serif;
77 //font-family: cursive;
78*/
79}
80
81#navigation
82{
83 float: left;
84 width: 100%;
85 /* background-color: black; */
86 background-color: #5E9DC3;
87/*
88 //background-color: #F3A653;
89 //background-color: #FFBB73;
90 //color: white;
91*/
92}
93
94#navigation ul
95{
96 margin: 0;
97 padding: 0;
98
99}
100
101#navigation ul li
102{
103 list-style-type: none;
104 display: inline;
105 text-transform: uppercase;
106}
107
108#navigation li a
109{
110 display: block;
111 float: left;
112 padding: 5px 10px;
113 color: white;
114 /* color: #A65500; */
115 text-decoration: none;
116 border-right: 2px solid white;
117 /* border-right: 2px solid #FFEC73; */
118}
119
120#navigation li a:hover {
121 background: #3E7DA3;
122 /* background: #000080; */
123 color: white;
124/*
125 //background: #A65500;
126 //color: #FFBB73; //rgb(255, 287, 115);
127*/
128
129
130}
131
132
133#content-container
134{
135 float: left;
136 width: 100%;
137 background-color: #FFEC73;
138}
139
140
141#section-navigation
142{
143 float: right;
144 width: 160px;
145 padding: 20px 0;
146 margin: 0 20px;
147
148 text-indent: -1.2em;
149 padding-left: 1.2em;
150
151}
152
153
154#content p {
155 text-align: justify;
156 line-height: 150%;
157}
158
159#content
160{
161 overflow:hidden;
162 padding: 20px 30px;
163 background: white;
164}
165
166#content h2 {
167 margin: 0;
168}
169
170#content pre {
171 line-height: 1.1;
172 background-color: #eeeeee;
173 padding: 5px;
174}
175
176
177#section-navigation ul
178{
179 margin: 0;
180 padding: 0;
181}
182
183#section-navigation ul li
184{
185 margin: 0 0 1em;
186 padding: 0;
187}
188
189
190#section-navigation ul li {
191 color: #FF8300;
192 list-style-position: inside;
193 list-style-type: square;
194 font-size: 120%;
195}
196
197
198#footer
199{
200 clear: left;
201/*
202 //text-align: right;
203 //font-style: italic;
204 //padding: 5px 5px 5px 20px;
205 //border-top: 2px solid #FFEC73; // pale yellow
206*/
207
208}
209
210#footer
211{
212/*
213 //color: #A65500;
214
215 //background-color: rgb(255, 187, 115); // light red brick
216 //background-color: #CC0001;
217*/
218}
219
Note: See TracBrowser for help on using the repository browser.