-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwpst.css
More file actions
151 lines (121 loc) · 1.73 KB
/
wpst.css
File metadata and controls
151 lines (121 loc) · 1.73 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
/*
PROJECT NAME
*/
:root {
--blue: #0168a5
}
/* Tag defaults */
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: 600
}
a {
color: var(--blue);
outline:0 !important;
}
hr {
opacity: 0.4
}
/* Brand */
.custom-logo-link {
width:150px;
}
/* Navbar */
.navbar-topbar {
border-radius: 0;
}
.navbar .dropdown-menu li {
width: 100%;
margin-left: 0 !important;
}
.f-nav{
position:fixed;
width:100%;
z-index:999
}
/* Main content */
.cover {
color: #fff;
text-align: center;
background-position: center;
background-size: cover;
display:flex;
justify-content:center;
align-items:center;
width:100%;
height:30vw;
position:relative;
}
.cover img{
width:100%;
height:100%;
object-fit:cover;
}
.cover h1{
color: #fff;
margin:0
}
#content article {
margin: 40px 0
}
#content header {
margin: 20px 0
}
#content section {
margin-bottom: 20px
}
#content footer {
padding-bottom: 20px
}
.page-header {
background: #f9f9f9 none repeat scroll 0 0;
border-bottom: 1px solid #eee;
margin: 40px 0 20px;
padding: 10px 14px;
}
/* Sidebar */
.sidebar {
margin-top: 20px
}
.sidebar section {
margin-bottom: 40px
}
.sidebar ul,
.sidebar ol {
list-style-type: none;
padding: 0
}
.sidebar li {
margin: 10px 0
}
/* Site footer */
.site-footer {
padding: 40px 0
}
.site-footer ul,
.site-footer ol {
list-style-type: none;
padding: 0
}
.site-footer li {
margin: 10px 0
}
.site-sub-footer p {
text-align: center
}
.site-footer p {
text-align: center
}
/* Media Queries */
@media only screen and (max-width : 1200px) {
}
@media only screen and (max-width : 992px) {
}
@media only screen and (max-width : 768px) {
}
@media only screen and (max-width : 480px) {
}