-
Notifications
You must be signed in to change notification settings - Fork 6
/
mog-main.css
229 lines (210 loc) · 3.39 KB
/
mog-main.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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
header#masthead{
text-align: center;
padding-top:3.5em;
}
header#masthead hgroup{
padding-bottom: 1em;
}
header#masthead .site-title{
font-size: 5em;
}
header#masthead .site-title a,
header#masthead .site-title a:visited{
font-family: 'Josefin Slab', 'Cambria', 'Georgia', serif;
color: #333;
text-decoration: none;
}
header#masthead .site-title a:hover{
text-decoration:underline;
}
header#masthead .site-description{
color: #777;
font-style: italic;
}
header nav .menu{
font-size: 1.3em;
margin: 0 auto;
display:table;
border-top: 1px solid #AAA;
border-bottom: 1px solid #AAA;
}
header nav .menu ul{
list-style: none;
text-align: center;
margin: 0;
}
header nav .menu ul li{
padding: 5px 1em;
-moz-transition: background-color 0.3s;
-webkit-transition: background-color 0.3s;
-o-transition: background-color 0.3s;
transition: background-color 0.3s;
}
header nav .menu ul li:hover{
background-color: #AAA;
}
header nav .menu ul a{
text-decoration: none;
color: #686868;
}
header nav .menu ul a:hover{
text-decoration: underline;
color: #eee;
}
.menu-toggle{
font-size: 2em;
background-color: #AAA;
}
.page-header{
padding-left: 1em;
font-size: 1.2em;
margin-bottom: 1.4em;
}
/* Primary Post area */
#primary{
margin: 5em auto;
max-width: 45em;
padding: 0 8px;
}
/* Post Entry */
article.hentry{
margin-bottom: 3em;
}
/* Entry header */
.entry-header{
text-align: center;
margin: 0;
}
.entry-header a{
text-decoration: none;
color: #000;
}
.entry-header a:hover{
color: #333;
text-decoration: underline;
}
/** Entry Title */
.entry-header h1{
font-size: 1.8em;
}
/** Entry meta */
.entry-header .entry-meta{
font-size: 0.7em;
}
/* Entry content*/
article .entry-content{
text-align: justify;
}
article .entry-content blockquote{
font-style: italic;
font-size: 0.9em;
border-top: 1px solid silver;
border-bottom: 1px solid silver;
background-color: #F0F0F0;
}
article .entry-content .cite{
font-size: 0.9em;
}
article h1{
font-size: 1.65em;
}
article h2{
font-size: 1.5em;
}
article h3{
font-size: 1.45em;
}
article h4{
font-size: 1.3em;
}
article h5{
font-size: 1.2em;
}
article h6{
font-size: 1.1em;
}
/* Secondary area */
#secondary{
margin: auto 10%;
padding: 2em 0;
border-top: 1px solid #AAA;
text-align: center;
}
aside.widget{
width: 13em;
margin: 0 1em 0 0;
padding: 5px;
display: inline-block;
text-align: left;
vertical-align: top;
}
/* Entry footer */
article footer{
font-size: 0.8em;
}
article footer a{
color: #333;
text-decoration: none;
}
article footer a:hover{
color: #333;
text-decoration: underline;
}
/* comments */
.comments-title{
margin: 1em 0 2em;
}
.commentlist{
list-style: none;
margin: 0 1em 1.5em;
}
.commentlist li{
margin: 0.5em 0;
padding: 0.2em 0.6em;
background-color: #efefef;
}
.comment .avatar{
border-radius: 20px;
vertical-align: middle;
}
.comment footer{
margin: 1em 0;
}
.comment-author{
float:left;
}
.comment-meta{
float:right;
}
.comment-content{
clear: both;
}
.reply{
text-align: right;
}
#respond{
margin-top: 2em;
padding: 0 3em;
}
#respond h3{
font-size: 1.5em;
}
.form-allowed-tags,
.form-allowed-tags abbr,
.form-allowed-tags code {
font-size: 0.8em;
}
.form-submit{
text-align: right;
}
/* Page Footer */
#colophon .site-info{
padding-right: 10%;
float: right;
font-size: 0.8em;
margin-bottom: 10px;
}
/* Fix for bug with footer not clearing floated elements */
.site-footer, .widget-area {
clear: both;
}