-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·89 lines (86 loc) · 1.92 KB
/
style.css
File metadata and controls
executable file
·89 lines (86 loc) · 1.92 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
/**
* Theme Name: Feather
* Theme URI: https://www.github.org/ereckers/feather/
* Description: A simple and easy responsive WordPress bootstrap3 starter theme from Red Bridge Internet.
* Version: 1.0.1
* Author: Ed Reckers
* Author URI: http://www.redbridgenet.com
* License: GNU General Public License v2.0
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: redbridge
* Domain Path: /languages/
* Tags: feather, easy, simple, starter, quickstart, responsive, bootstrap, bootstrap3
*
* This theme, like WordPress, is licensed under the GPL.
* Use it to make something cool, have fun, and share what you've learned with others.
*
* Copyright (c) 2014 Ed Reckers. All rights reserved.
* http://www.redbridgenet.com
*/
html {
/* put background stuff here for full viewport: body can go transparent */
}
body {
margin: 0 auto;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-weight: 300;
font-family: 'Roboto', sans-serif;
}
h1, h2, h3 {
font-family: 'Montserrat', sans-serif;
font-weight: 400;
}
.main {
min-height: 400px;
}
.site-footer {
margin-top: 50px;
}
.sidebar {
padding-top: 25px;
}
/*
* Some Styling for WordPress Specific Elements
*/
.entry-meta .published,
.entry-meta .byline.author {
padding-right: 12px;
}
.entry-meta {
margin-bottom: 15px;
}
li.pingback,
li.comment {
padding: 15px;
border: 1px solid #EDEDED;
}
.comment-author {
font-size: 16px;
}
.comment-meta a {
font-size: 13px;
color: #696969;
}
.author-description {
padding: 15px;
border: 1px solid #EDEDED;
}
.alignleft {
float: left;
}
.alignright {
float: right;
}
.aligncenter {
display: block;
margin-left: auto;
margin-right: auto;
}
/**
* Clickable Parent Menu Items with Roots Theme and Twitter Bootstrap
* https://www.gaslampmedia.com/clickable-parent-menu-items-with-roots-theme-and-twitter-bootstrap/
*/
ul.nav li.dropdown:hover > ul.dropdown-menu {
display: block;
}