website/assets/_default/list.scss

67 lines
1.2 KiB
SCSS
Raw Normal View History

2020-09-14 16:24:02 +02:00
@import '../partials/main';
@import '../partials/nav';
@import '../partials/footer';
header {
text-align: center;
margin: 100px 0;
h1 {
font-size: 2em;
}
}
.section-articles {
display: grid;
grid-gap: 1rem;
grid-template-columns: repeat(2, 1fr);
margin: 20px 0;
2020-09-14 16:24:02 +02:00
a {
color: rgb(255, 255, 255);
text-decoration: none;
}
article {
background: rgb(60, 60, 90);
border: 1px solid rgb(60, 60, 90);
2020-09-14 16:24:02 +02:00
border-radius: 5px;
color: rgb(255, 255, 255);
2020-09-14 16:24:02 +02:00
display: flex;
flex-flow: column;
height: max-content;
padding: 20px;
2020-09-14 16:24:02 +02:00
transition: background .2s;
&:hover {
background: rgb(70, 70, 105);
}
2020-09-14 16:24:02 +02:00
img {
background: rgb(80, 80, 120);
border-radius: 5px 5px 0px 0px;
2020-09-14 16:24:02 +02:00
margin: -20px -20px 20px -20px;
max-height: 250px;
max-width: calc(100% + 40px);
object-fit: cover;
order: -1;
2020-09-14 16:24:02 +02:00
}
h1 {
margin-top: 0px;
}
a {
color: rgb(255, 255, 255);
&:hover {
text-decoration: underline;
}
2020-09-14 16:24:02 +02:00
}
.meta {
margin: 0;
}
.author {
color: rgb(200, 200, 230);
font-style: italic;
2020-09-14 16:24:02 +02:00
}
}
}
2020-09-21 10:59:52 +02:00
@media (max-width: 600px) {
.section-articles {
grid-template-columns: repeat(1, 1fr);
}
}