1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-27 05:38:26 -04:00
jarv.is/assets/sass/pages/_list.scss

60 lines
788 B
SCSS

@charset "UTF-8";
// Archive/List Styles
main#list {
max-width: 1010px;
padding: 1.5em 3em;
margin: 0 auto;
section.year {
font-size: 1.1em;
h2 {
font-size: 1.8em;
margin: 0;
}
ul {
list-style-type: none;
padding-left: 0;
display: block;
}
li {
display: flex;
div.date {
color: $color-light;
width: 5.25em;
flex-shrink: 0;
}
&::after {
content: '';
display: block;
clear: both;
}
+ li {
margin-top: 1.3em;
}
&:last-child {
margin-bottom: 1.8em;
}
}
}
}
// Responsive
@mixin responsive--list() {
main#list {
padding: 1em 1.2em;
section.year {
font-size: 1em;
}
}
}