-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
114 lines (92 loc) · 1.82 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
/*
Theme Name: Hertzler Courses
Description: GeneratePress child theme.
Author: Eric Saner
Author URI: https://esaner.com
Template: generatepress
Text Domain: hetzler
*/
/**
* Header
*/
.site-header {
background-color: #393839;
}
.inside-header {
padding-bottom: 4rem;
}
.main-title a,
.main-title a:hover,
.main-title a:visited {
color: #fff;
}
.site-logo {
margin-bottom: 12vw !important;
}
.site-branding {
position: absolute;
top: 36vw;
}
.site-description {
font-size: 1.25rem;
}
/**
* Primary Nav
*/
.main-navigation .main-nav ul li > a {
background-color: #393839 !important;
font-size: 1rem;
font-weight: 700;
}
.main-navigation .main-nav ul li > a:hover, .main-navigation .main-nav ul li.sfHover > a {
color: #b6b6b6;
-webkit-transition: all .4s ease-in-out;
-moz-transition: all .4s ease-in-out;
transition: all .4s ease-in-out;
}
.main-navigation .main-nav ul li[class*="current-menu-"] > a {
color: #f8be6e;
}
/**
* Main
*/
.site-main,
.sidebar > div {
margin-top: 0 !important;
}
.site-main .inside-article {
padding-top: 0;
}
header.entry-header {
margin: 0 -30px;
background: linear-gradient(to right, #efefef, #fcc477 10%, #ecb161 25%, #ecb161 75%, #fcc477 90%, #efefef);
}
header .entry-title {
text-align: center;
font-size: 1.875rem;
font-weight: 500;
padding: 1rem 40px;
}
@media (min-width: 454px) {
.site-logo {
margin-bottom: 4rem !important;
}
.site-branding {
top: 10.2rem;
}
}
@media (min-width: 769px) {
.inside-header {
padding-bottom: 4rem;
}
.site-logo {
margin-bottom: 0 !important;
}
.site-branding {
top: unset;
bottom: 2rem;
}
header.entry-header {
margin: 0 -40px;
}
}