blog/src/css/main.scss

141 lines
1.8 KiB
SCSS
Raw Normal View History

2016-05-21 09:42:57 +00:00
$link-color: #AD4E4E;
$selectionColor: #D2D2D2;
2017-06-03 10:55:30 +00:00
$background-color: #FFF;
2016-05-21 09:42:57 +00:00
@import "_underlines.scss";
2017-06-03 10:55:30 +00:00
2016-05-21 09:42:57 +00:00
body {
2017-06-03 10:55:30 +00:00
margin: 0;
padding: 0;
overflow: none;
2016-05-21 09:42:57 +00:00
}
* {
&::selection {
background-color: $selectionColor;
}
&::-moz-selection {
background-color: $selectionColor;
}
}
a {
2017-06-03 10:55:30 +00:00
color: $link-color;
2016-05-21 09:42:57 +00:00
transition: color ease .3s;
&:hover {
color: $link-color;
text-decoration: none;
}
&+img {
border-bottom: none;
}
}
pre code {
overflow: scroll;
2016-07-26 09:08:49 +00:00
padding-bottom: 15px;
2016-05-21 09:42:57 +00:00
}
2017-06-03 10:55:30 +00:00
figure {
max-width: 100%;
margin: 0 auto;
img {
max-width: 100%;
}
p {
margin: 0;
}
2016-05-21 09:42:57 +00:00
}
iframe {
max-width: 100%;
border: 0;
overflow: scroll;
}
.emoji {
display: inline !important;
margin: 0 !important;
}
2017-06-03 10:55:30 +00:00
.container {
max-width: 732px;
margin: 0 auto;
2016-05-21 09:42:57 +00:00
}
2017-06-03 10:55:30 +00:00
.post-list {
list-style: none;
padding: 0;
2016-05-21 09:42:57 +00:00
}
2017-06-03 10:55:30 +00:00
.post-preview {
opacity: 0.6;
2016-05-21 09:42:57 +00:00
}
2017-06-03 10:55:30 +00:00
.pagination {
2016-05-21 09:42:57 +00:00
text-align: center;
}
2017-06-03 10:55:30 +00:00
.pagination a {
font-size: 1.4mem;
color: #000;
}
2016-05-21 09:42:57 +00:00
2017-06-03 10:55:30 +00:00
.back-to-blog {
font-size: 2.5em;
text-decoration: none !important;
background: none !important;
text-shadow: none !important;
2016-05-21 09:42:57 +00:00
}
2017-06-03 10:55:30 +00:00
.post {
font-family: 'Lucida Grande', Arial, sans-serif;
font-size: 18px;
line-height: 28px;
padding: 2px 8px;
2016-05-21 09:42:57 +00:00
a {
@include linkUnderlines($background-color, #4a4a4a, $link-color);
}
2017-06-03 10:55:30 +00:00
.post-title {
color: #000;
font-size: 32px;
line-height: 34px;
margin: 21px 0 0;
font-weight: 700;
2016-05-21 09:42:57 +00:00
a {
2017-06-03 10:55:30 +00:00
color: #000;
text-decoration: none;
margin: 0;
2016-05-21 09:42:57 +00:00
}
}
2016-07-26 09:08:49 +00:00
2017-06-03 10:55:30 +00:00
.post-meta {
color: #79828B;
font-size: 15px;
line-height: 17px;
margin: 0 0 12px 0;
2016-07-26 09:08:49 +00:00
}
2016-05-21 09:42:57 +00:00
}
2017-06-03 10:55:30 +00:00
footer {
margin: 20px 0 10px;
color: #79828B;
2016-05-21 09:42:57 +00:00
text-align: center;
}
2017-06-03 10:55:30 +00:00
.social-icons {
a {
text-decoration: none !important;
background: none !important;
text-shadow: none !important;
2016-05-21 09:42:57 +00:00
}
2017-06-03 10:55:30 +00:00
a svg {
height: 40px;
2016-05-21 09:42:57 +00:00
}
2017-06-03 10:55:30 +00:00
}