-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
169 lines (140 loc) · 2.79 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
/*
Theme Name: Your Theme
Theme URI: http://example.com/example/
Description: A search engine optimized website framework for WordPress.
Author: You
Author URI: http://example.com/
Version: 1.0
.
Your theme will be your copyrighted work.
Like WordPress, this work is released under GNU General Public License, version 2 (GPL).
http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
.
*/
/* Reset default browser styles */
@import url('styles/reset.css');
/* Rebuild default browser styles */
@import url('styles/rebuild.css');
/* Basic WordPress Styles */
@import url('styles/wp.css');
/* =Header
-------------------------------------------------------------- */
#branding {
margin: 0 0 1.5em 0;
}
/* =Menu
-------------------------------------------------------------- */
#access {
margin: 0 0 1.5em 0;
overflow: auto;
}
.menu ul {
list-style: none;
margin: 0;
}
.menu ul ul {
display: none;
}
.menu li {
display: inline;
}
.menu a {
display: block;
float: left;
}
/* =Content
-------------------------------------------------------------- */
.post {
margin: 0 0 3em 0;
}
.entry-content, .entry-summary {
margin: 1.5em 0 0 0;
}
/* =Navigation
-------------------------------------------------------------- */
.navigation {
margin: 0 0 1.5em 0;
overflow: auto;
}
/* =Widget Areas
-------------------------------------------------------------- */
.widget-area ul {
list-style: none;
margin-left: 0;
}
.widget-area ul ul {
list-style: disc;
margin-left: 1.1em;
}
.widget-area ul ul ul {
margin-left: 2.5em;
}
.widget-container {
margin: 0 0 1.5em 0;
}
/* Xandra-1 specific */
body {
font-family: 'Anonymous Pro', serif;
width: 700px;
height: auto;
margin-top: 40px;
margin-left: 70px;
}
/* make nice links*/
a {
color: black;
}
/*
.menu ul li a {
padding-right: 12px;
}
*/
/* get some nice fonts */
#blog-title a {
font-size: 36px;
font-style: normal;
font-weight: 400;
text-decoration: none;
text-transform: none;
letter-spacing: -0.2em;
word-spacing: 0em;
position: absolute;
top: 35px;
left: 700px;
}
/* yellow boxes on hovered links */
a:hover {
background-color: yellow;
}
/* ...except blog title */
#blog-title a:hover {
background-color: white;
}
/* menu aka wp pages */
#access ul li a {
font-size: 15px;
font-style: normal;
font-weight: bold;
text-shadow: none;
text-decoration: none;
text-transform: none;
letter-spacing: 0em;
word-spacing: 0em;
line-height: 1.2;
float: left;
display: inline;
margin-left: 5px;
margin-right: 5px;
}
/* body text */
#main {
font-size: 14px;
font-style: normal;
font-weight: 400;
text-shadow: none;
text-decoration: none;
text-transform: none;
letter-spacing: 0em;
word-spacing: 0em;
line-height: 1.2;
}