-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
140 lines (128 loc) · 2.63 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
/*
Theme Name: Fixed Child
Theme URI: https://grantpalin.com
Description: Fixed Child is a child theme with some customizations and enhancements for Fixed from Array.
Template: fixed
Author: Grant Palin
Author URI: http://grantpalin.com
Version: 1.0.0
Tags: white, gray, white, two-columns, fluid-layout, custom-background, custom-colors, custom-menu, editor-style, featured-images, post-formats, theme-options, translation-ready, photoblogging, threaded-comments
License: GNU General Public License v2.0
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
/*
* Sidebar styling.
*/
/* override category link colors */
.header .cat-item a {
color: #ffffff;
}
.header .cat-item a:hover {
color: #ffffff;
}
/*
* Home page styling
*/
/* homepage widgets */
.home-widget-container {
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: flex-start;
}
.home-widget {
box-sizing: border-box;
width: 50%;
flex-basis: 50%;
flex-grow: 0;
flex-shrink: 0;
padding-bottom: 20px;
}
/* add spacing between widget columns */
.home-widget:nth-child(2n + 1) {
padding-right: 10px;
}
.home-widget:nth-child(2n) {
padding-left: 10px;
}
.home-widget-inner {
background-color: #fff;
padding: 10px;
}
/* override some styles for the Flexible Posts widget */
.home-widget .dpe-flexible-posts {
list-style-type: none;
}
.home-widget .dpe-flexible-posts .post {
background-color: transparent;
}
.home-widget .dpe-flexible-posts li {
margin-bottom: 0;
}
/*
* Blog archive styling; see home.php for markup
*/
/* some custom styles for WPBeginner's Compact Archives plugin used on the main blog archive */
.blog .year {
padding: 5px 0;
}
.blog .year + .year {
border-top: 1px solid #555555;
}
.blog .year strong { }
.blog .year a,
.blog .year .emptymonth {
padding: 5px;
}
.blog .year a {
background-color: #32383C;
border-radius: 2px;
color: #ffffff;
}
.blog .year a:hover {
background-color: #879097;
}
/* blog archive browse */
.blog .browse {
display: inline-block;
vertical-align: top;
}
.blog .browse-chronological {
width: 60%;
}
.blog .browse-chronological ul {
display: inline-block;
}
.blog .browse-categories {
margin-left: 5%;
width: 35%;
}
/* blog archive categories list */
.categories-list {
font-size: 0;
}
.cat-item {
display: inline-block;
font-size: 1rem;
margin-bottom: 10px;
margin-right: 10px;
padding-bottom: 10px;
}
.cat-item a {
background-color: #32383C;
border-radius: 2px;
color: #ffffff;
padding: 5px;
}
.cat-item a:hover {
background-color: #879097;
}
/*
* Styling for post formats.
*/
.format-quote .quote-source {
border-top: #707e85 1px solid;
font-size: 50%;
margin-top: 0.25em;
padding-top: 0.25em;
}