forked from yevi.org/Ghost_Ruby_Theme
6350a2de33
* Add Alto theme * Remove unnecessary specificity from link hover selector * Add Dope theme * Refine Dope theme * Remove unnecessary selectors from dark mode styles * Add Ruby theme * Add branding+navigation header style * Post/page template cleanup for Ruby theme * Remove jQuery dependency from Ruby * Photoswipe for Ruby * package.json cleanup * Add Ease theme * Ease theme cleanup * Add Edge theme * Add callback to pagination script * Rebuild assets * Refresh Wave * Wave theme pagination * Remove unused settings * Add tag/author pages to Wave * Remove unnecessary dependencies * Post meta spacing * Dawn theme * Edition theme * Cleanup body class * Lint * More cleanup * London theme * Ease theme search cleanup * Minor bug fixes * Remove jQuery dependency from the custom search script * Put back commented functions * Update posts per page to make it consistent with homepage section posts * Alto theme update * Rebuild assets * Remove unused theme setting * Unnecessary rule * Start adding search support * Search support to more themes * Remove starter * Add Alto theme workflow
20 lines
653 B
CSS
20 lines
653 B
CSS
:root {
|
|
--primary-color: var(--ghost-accent-color, #2ec4b6);
|
|
--primary-text-color: #333;
|
|
--secondary-text-color: #aaa;
|
|
--white-color: #fff;
|
|
--light-gray-color: #f4f4f4;
|
|
--mid-gray-color: #e9e9e9;
|
|
--dark-gray-color: #1a1a1a;
|
|
--black-color: #000;
|
|
--font-sans: "Open Sans", -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
|
|
--font-serif: Lora, Times, serif;
|
|
--animation-base: ease-in-out;
|
|
--shadow-base: 0 0 10px rgba(0, 0, 0, 0.02);
|
|
--content-font-size: 1.7rem;
|
|
}
|
|
|
|
body:not(.post-template):not(.page-template) {
|
|
background-image: linear-gradient(0deg, #efefef 65%, #fff);
|
|
}
|