ghost_leaders_theme/assets/css/screen.css

191 lines
3.0 KiB
CSS

/*
This is a development CSS file which is compiled to a minified
production stylesheet in assets/built/screen.css using: gulp dev
*/
/* Lib - Local component imports
/* ---------------------------------------------------------- */
/* Base */
@import "vars.css";
@import "components/global.css";
/* Ghost components */
@import "components/header.css";
@import "components/content.css";
@import "components/members.css";
/* Global components */
@import "components/forms.css";
@import "components/buttons.css";
/* Main - Your styles here! Edit below
/* ---------------------------------------------------------- */
html,
.gh-viewport {
display: flex;
flex-direction: column;
min-height: 100vh;
background: #fff;
}
.gh-main {
flex: 1 0 auto;
display: flex;
flex-direction: column;
}
/* Global */
.gh-page {
padding: 0 4vw;
}
.gh-container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
}
.gh-head-actions a {
display: inline-flex;
align-items: center;
margin: 0;
padding: 10px;
}
.gh-head-actions a svg {
height: 1.8rem;
fill: currentcolor;
}
.gh-head-actions a:first-child svg {
margin-left: 20px;
}
.gh-head-actions a:last-child svg {
height: 2rem;
}
/* Index
/* ---------------------------------------------------------- */
.post-card {
margin: 0 auto 6vw;
}
.post-card-link {
display: flex;
flex-direction: column;
}
.post-card-image {
width: 100%;
max-height: 700px;
object-fit: cover;
margin-bottom: 2vw;
}
.post-card-meta {
display: block;
margin: 0 0 1rem;
font-size: 1.3rem;
text-transform: uppercase;
opacity: 0.6;
}
.post-card-content {
max-width: 720px;
margin: 0 auto;
text-align: center;
}
.post-card-content p {
margin: 1rem 0;
padding: 0 4vw;
}
.post-card-content > strong {
display: inline-block;
padding: 1px 0;
font-weight: 500;
box-shadow: 0 -1px 0 0 inset currentColor;
opacity: 0.6;
}
/* Post
/* ---------------------------------------------------------- */
.gh-header {
padding: 0 0 4vw 0;
}
.gh-title {
margin-top: 4vw;
}
.gh-image {
grid-column: full-start / full-end;
width: 100%;
}
.gh-post-footer {
margin: 2rem 0;
}
/* Errors
/* ---------------------------------------------------------- */
.gh-error {
flex: 1 0 auto;
display: flex;
flex-direction: column;
justify-content: center;
padding-bottom: 2vmin;
}
.gh-error-content {
flex: 1 0 auto;
text-align: center;
}
.gh-error-code {
margin: 0;
font-size: 14vmin;
}
.gh-error-description {
font-size: 4vmin;
font-weight: 300;
opacity: 0.6;
}
.gh-error-link {
display: block;
margin-top: 4vmin;
font-size: 1.6rem;
}
/* Footer
/* ---------------------------------------------------------- */
.gh-foot {
display: flex;
align-items: center;
justify-content: center;
padding: 4vw;
}
.gh-foot .gh-container {
width: auto;
}
.gh-foot a {
color: inherit;
}