-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
214 lines (172 loc) · 2.92 KB
/
style.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
/* General */
* {
margin: 0;
padding: 0;
border: 0;
}
body {
font-size: 75%;
font-family: "Myriad Pro", Lucida, sans-serif;
margin: 0px 0px 0px 10px;
background: #333 url(images/bodyBackground.png) repeat-x center 36px;
cursor: default;
}
h1 {
font-size: 1.6em;
}
h2 {
padding: 1em 0 0.6em;
font-size: 1.4em;
}
p {
padding: 0.6em 0;
}
a {
color: #BB6B2C;
}
h1 a, h2 a {
color: #333;
}
a:hover {
color: #776559;
}
ul {
padding-left: 10px;
}
li {
margin-left: 10px;
}
pre {
margin: 1em 0;
padding: 0.6em 1em;
overflow: auto;
color: #333;
font-family: "Courier New", monospace;
background: #e6e6e6;
border: 1px solid #ddd;
}
#container img {
float: right;
padding:0px 0px 20px 20px;
}
/* Classes */
.filename {
font-weight: bold;
letter-spacing: 0.2em;
}
/*****************************************************************************/
/*
/* Wrapper
/*
/*****************************************************************************/
#wrapper {
width: 1035px;
text-align: left;
#margin: 0px auto;
}
/*****************************************************************************/
/*
/* Sidebar
/*
/*****************************************************************************/
#sidebar {
margin: 20px 0px 0px 0px ;
width: 245px;
float:left;
color:#fff;
line-height:17px;
}
#sidebar a {
text-decoration:none;
color: #fff;
font-weight: 100;
}
#sidebar a:hover{
text-decoration:none;
color:#999;
}
/* Headings */
#header{
text-align:center;
margin: 20px 0px 20px 0px;
}
#header a{
font-size: 280%;
}
#header p{
padding: 0px;
font-style:italic;
letter-spacing: 1px;
}
/* Menu */
.menu {
font-family: Arial, Verdana, Helvetica, sans-serif;
}
.menu ul {
list-style: none;
padding-left: 0px;
}
.menu li {
margin-left: 0px;
}
.menu ul li h3{
font-size:140%;
margin: 0px 0px 8px 0px;
border-bottom: 1px solid #fff;
font-variant:small-caps;
}
.menu ul li ul li{
background: url("http://articles.cybercow.se/w/wp-content/themes/8somearlukin/images/listbullet.gif") no-repeat 0px -3px;
border-bottom:1px solid #555;
padding: 0px 0px 1px 15px;
}
.menu ul li ul li ul li{
border-bottom: none;
}
/* Subscribe */
#subscribe{
text-align:center;
}
#subscribe img{
float:none;
vertical-align:-3px;
margin-top: 10px;
}
/* Credits */
#credit{
text-align:center;
color:#555;
font-size:85%;
}
#credit a{
color:#999;
}
#credit a:hover {
color: #fff
}
#ads {
text-align:center;
#position: fixed;
#z-index: 2000000000;
#right: 0px;
#bottom: 0px;
#cursor: pointer;
}
#ads img {
height: 16px;
vertical-align:bottom;
}
/*****************************************************************************/
/*
/* Text container
/*
/*****************************************************************************/
#container {
float:left;
width: 600px;
margin: 20px;
padding: 40px 50px;
color: #333;
font-size: 1.2em;
background-color: #EEE;
}