-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
325 lines (292 loc) · 6.31 KB
/
Copy pathstyle.css
File metadata and controls
325 lines (292 loc) · 6.31 KB
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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
/*
Theme Name: Strapless
Description: A clean, simple, responsive theme built with Bootstrap (v3), Modernizr & icons from Font Awesome.
Author: WP Smackdown
Author URI: http://wpsmackdown.com/?utm_medium=wp-admin+referral&utm_campaign=Strapless+Theme+Installation
Version: 1.0.0
Tags: responsive, white, gray, blue, minimal, clean, bootstrap, font awesome, modernizr, icons, two-column
/***** Color Palette *****
Color 1: #xxxxxx
Color 2: #xxxxxx
Color 3: #xxxxxx
***** Table of Contents *****
- Global Elements / Bootstrap Overrides
- Main Navigation
- Main Content
- Blog & Single Posts
- Footer
- Sidebar (widgets, tag cloud)
- Archives / Search Results
- Comments / Comment Form
- WordPress Images / Galleries
- Plugin Styles (Jetpack)
*/
/* Global Elements / Bootstrap Overrides
--------------------------------------------------------- */
/* Place any new styles or overrides to Bootstrap here */
blockquote cite {
display: block;
font-style: italic;
font-size: 85%;
margin-top: 10px;
}
/* Main Navigation
--------------------------------------------------------- */
.navbar-default .navbar-nav > .current-menu-item > a,
.navbar-default .navbar-nav > .current-menu-item > a:hover,
.navbar-default .navbar-nav > .current-menu-item > a:focus {
color: #555;
background-color: #e7e7e7;
}
/* Main Content
--------------------------------------------------------- */
/* Create space at top of page for navbar (delete if not using "navbar-fixed-top") */
#wrap > .container {
padding: 60px 15px 0;
}
#main article {
font-size: 16px;
}
#main img,
#main .wp-caption {
max-width: 100%;
height: auto;
}
/* Blog & Single Posts
--------------------------------------------------------- */
body.single .jumbotron,
body.blog .jumbotron,
body.archive .jumbotron,
body.search .jumbotron,
body.error404 .jumbotron {
margin-bottom: 0;
}
body.single .jumbotron {
padding-bottom: 0;
}
.jumbotron h1 {
font-size: 42px;
word-wrap: break-word;
}
.img-featured img {
margin: 20px 0;
float: right;
}
/* Footer
---------------------------------------------------------- */
/* Sticky Footer */
html,
body {
height: 100%; /* The html & body elements cannot have any padding or margin. */
}
/* Wrapper for page content to push down footer */
#wrap {
min-height: 100%;
height: auto !important;
height: 100%;
/* Negative indent footer by its height */
margin: 0 auto -60px;
/* Pad bottom by footer height */
padding: 0 0 60px;
}
/* Set the fixed height of the footer */
#footer {
height: 60px;
background-color: #f5f5f5;
}
.container .credit {
margin: 20px 0;
}
#footer > .container {
padding-left: 15px;
padding-right: 15px;
}
/* Sidebar
--------------------------------------------------------- */
#sidebar {
font-size: 90%;
color: #888;
}
/* Widgets
--------------------------- */
#sidebar .widget {
margin-bottom: 25px;
padding-bottom: 10px;
border-bottom: 1px solid #ccc;
}
#sidebar .widget:last-child {
border-bottom: none;
}
#sidebar h4 {
text-transform: uppercase;
color: #888;
margin-bottom: 8px;
}
#sidebar h4 a {
color: #888;
text-decoration: none;
}
#sidebar h4 a:hover {
text-decoration: underline;
}
#sidebar .widget ul {
margin-left: 0;
padding-left: 0;
list-style: none;
}
#sidebar .widget li {
margin-bottom: 10px;
}
/* Tag Clouds
--------------------------- */
.widget .tagcloud a {
display: inline-block;
padding: 2px 4px;
text-decoration: none;
border-radius: 3px;
background: #efefef;
border: 1px solid transparent;
}
.widget .tagcloud a:hover {
background: #dedede;
border: 1px solid #ccc;
}
/* Blog Section / Archives / Search Results
--------------------------------------------------------- */
body.archive article:first-child h2,
body.search #main h1 {
margin-top: 0;
}
/* Comments
--------------------------------------------------------- */
/* Comment List */
h4#comments {
font-size: 36px;
}
.comment-list > li {
padding: 15px;
margin: 0 0 20px;
background: #f5f5f5;
border: 1px solid #e3e3e3;
border-radius: 3px;
}
.comment-list article {
width: 100%;
overflow: hidden;
}
.comment-meta {
max-width: 96px;
}
.comment-meta .avatar {
margin-bottom: 10px;
}
.comment-content {
padding-left: 20px;
}
.comment-content .reply {
min-height: 30px;
}
.comment-author a {
display: inline-block;
}
.comment-date {
margin-left: 12px;
}
.comment-content .comment-permalink {
text-decoration: none;
}
/* Threaded Comments */
.comment-list .children {
clear: both;
margin: 20px auto 0;
}
.comment-list .children li {
padding: 10px;
width: 90%;
background: #fff;
background: rgba(255,255,255,.8);
border: 1px solid #e3e3e3;
border-radius: 3px;
}
.comment-list .bypostauthor,
.comment-list .children .bypostauthor {
background: #f0f7fd;
border: 1px solid #bce8f1;
border-left: 5px solid #428bca;
box-shadow: inset 0 0 0 1px #fff;
}
/* Comment Form
--------------------------------------------------------- */
#respond h4 {
font-size: 30px;
margin-top: 20px;
margin-bottom: 10px;
}
#commentform code {
white-space: normal;
}
/* WordPress Images / Galleries
--------------------------------------------------------- */
.alignleft {
float: left;
margin: 5px 20px 1em 0;
}
.alignright {
float: right;
margin: 5px 0 1em 20px;
}
.aligncenter {
clear: both;
display: block;
margin: 1em auto;
}
.wp-caption {
padding: 4px;
background: #f1f1f1;
}
.wp-caption .wp-caption-text {
text-align: left;
padding: 8px 4px 4px;
margin: 0;
font-size: 14px;
font-style: italic;
color: #999;
line-height: 1.2;
}
.wp-caption img {
margin: 0;
padding: 0;
}
/* Jetpack Plugin by Automattic
Styles for various Jetpack modules
--------------------------------------------------------- */
/* Comment Subscriptions */
.comment-subscription-form {
margin-bottom: 8px;
}
.comment-subscription-form .subscribe-label {
font-weight: normal;
cursor: pointer;
padding-left: 3px;
}
.comment-subscription-form input:checked + .subscribe-label {
background: #dff0d8;
color: #468847;
}
/* Shortcode Embeds */
iframe.youtube-player {
background: #f1f1f1;
padding: 7px;
border: 1px solid #ddd;
border-radius: 3px;
}
/* Meta Slider by Matcha Labs
Styles for jQuery slider plugins
--------------------------------------------------------- */
/* Flex Slider */
/* Display first image on page load, before jQuery loads */
.flexslider .slides > li:first-child {
display: block !important;
opacity: 1 !important;
-webkit-backface-visibility: visible !important;
}