1
1
Fork 0
This repository has been archived on 2022-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
natenom-websites/scss/import/blog.scss

103 lines
2.1 KiB
SCSS
Raw Normal View History

2020-10-09 21:48:10 +02:00
// :root
:root {
--global--color-dark-gray: #{$blog_body-bg} !important;
}
// general
2020-10-09 21:48:10 +02:00
body {
#page {
header#masthead {
nav#site-navigation {
.primary-menu-container {
ul#primary-menu-list {
.menu-item {
2020-10-10 19:45:15 +02:00
a {
text-decoration-style: solid;
p.menu-item-description {
display: none;
2020-10-09 21:48:10 +02:00
}
}
}
}
}
}
}
}
}
// home
2020-10-09 21:48:10 +02:00
body.home {
#page {
#content {
#primary {
#main {
article.post {
header.entry-header {
h2.entry-title {
line-height: 42px;
margin-bottom: -20px;
max-width: var(--responsive--alignfull-width);
text-align: center;
width: var(--responsive--alignwide-width);
2020-10-09 21:48:10 +02:00
a {
font-size: 39px;
text-decoration: none;
2020-10-09 21:48:10 +02:00
}
}
}
.entry-content {
h2 {
font-size: 30px;
line-height: 35px;
2020-10-09 21:48:10 +02:00
}
.more-link-container {
a.more-link {
background: transparent;
border: 1px solid $white;
padding: 10px 40px;
2020-10-10 17:09:26 +02:00
text-decoration: none;
transition: background .2s, border .2s !important;
&:hover {
background: $nom-blue;
border-color: $nom-blue;
2020-10-10 19:45:15 +02:00
}
}
}
}
}
}
}
}
}
}
// post
2020-10-11 12:41:49 +02:00
body.post-template-cover,
body.single-post {
#page {
#content {
#primary {
#main {
article.post {
header.entry-header {
h1.entry-title {
font-size: 39px;
font-weight: 400;
line-height: 42px;
margin-bottom: -20px;
text-align: center;
text-decoration: none;
}
}
}
}
}
}
}
}