-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyles.css
177 lines (145 loc) · 4.1 KB
/
styles.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
@charset "UTF-8";
/* CSS Document */
/*
Purple: http://slayeroffice.com/tools/color_palette/?hex=39275B
Gold (Original) : http://slayeroffice.com/tools/color_palette/?hex=C79900
Gold (Bright): http://slayeroffice.com/tools/color_palette/?hex=EBB700
*/
* { margin: 0; padding: 0; }
html {
background: #2b1d44; /* Old browsers */
background: -moz-linear-gradient(top, #2b1d44 0%, #39275b 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2b1d44), color-stop(100%,#39275b)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #2b1d44 0%,#39275b 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #2b1d44 0%,#39275b 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #2b1d44 0%,#39275b 100%); /* IE10+ */
background: linear-gradient(to bottom, #2b1d44 0%,#39275b 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2b1d44', endColorstr='#39275b',GradientType=0 ); /* IE6-9 */
}
body {
font-family: Arial, Helvetica, sans-serif;
color: #000000;
background-image: url(images/bg-boxes.png);
background-position: top ; /* positioned to the top of page */
background-repeat: repeat-x; /* repeat horizontally */
}
h1 {
font-size: 36px;
line-height: 36px;
color: #FFF;
}
h2 {
font-size: 24px;
line-height: 24px;
color: #39275B; /* purple */
/*padding-top: 8px;*/
margin-bottom: 10px; /* changed */
}
h3 {
font-size: 18px;
line-height: 18px;
color: #39275B; /* purple */
padding-top: 10px; /* changed */
margin-bottom: 4px; /* changed */
}
p {
font-size: 16px;
line-height: 24px;
margin-bottom: 10px;
}
ol, ul {
font-size: 16px;
line-height: 24px;
padding-left: 40px;
margin-bottom: 10px;
}
#header {
width: 980px; /* change the width */
margin: 0 auto;
padding-top: 20px; /* change the padding */
/*border: 1px solid black;*/
}
#header a {
color: #FFFFFF; /* white */
text-decoration: none; /* remove undeline */
}
#header a:hover {
color: #C79900; /* gold */
}
#navigation {
width: 980px; /* change the width */
margin: 0 auto;
padding: 10px 0; /* lets change this to 10px top/bottom and 0px left/right */
/*border: 1px solid black;*/
color: #FFF; /* give all text elements a color of white */
}
#navigation ul {
overflow: hidden; /* prevents the great collapse */
/*border: 1px solid grey;*/
padding: 10px 0;
margin: 0; /* overwrites existing margins */
}
#navigation ul li {
list-style: none;
float: left;
margin: 0; /* overwrites existing margins */
margin-right: 20px; /* gives the items space between */
}
#navigation ul li a {
color: #FFF; /* let's use white for the default link state */
text-decoration: none; /* this disables the default underline */
}
#navigation ul li a:hover {
color: #EBB700; /* and use bright gold */
}
#navigation ul li.current a {
color: #EBB700; /* and use bright gold */
}
#content {
width: 940px;
/*background-image: url(images/bg-960.png);*/
background-position: center;
background-repeat: repeat-y;
background-color:#FFFFFF;
overflow: hidden; /* prevents the great collapse */
margin: 0 auto;
padding: 20px; /* change padding to 20px all around */
border-radius: 10px; /* adds rounded corners */
}
#content a {
color: #39275B; /* purple */
}
#content a:hover {
color: #C79900; /* gold */
}
#text {
width: 620px;
float: left;
}
#sidebar {
width: 300px;
float: right;
}
#sidebar ul {
padding-left: 0px; /* overwrite general padding */
}
#sidebar ul li {
list-style: none; /* removes default bullet */
background-image:url(images/bg-bullet.png);
background-position: left; /* positioned to the left */
background-repeat: no-repeat; /* do not repeat background */
padding-left: 10px; /* creates padding so we can see the background image */
}
#footer {
width: 980px; /* change the width */
margin: 0 auto;
padding: 20px 0; /* change the padding */
/*border: 1px solid black;*/
color: #FFF; /* give all text elements a color of white */
}
#footer a {
color: #FFFFFF; /* white */
}
#footer a:hover {
color: #C79900; /* gold */
}