website/assets/index.scss

120 lines
2.3 KiB
SCSS
Raw Normal View History

2020-09-14 16:24:02 +02:00
@import 'partials/main';
@import 'partials/nav';
header {
2020-09-26 17:57:12 +02:00
margin: 100px 0;
text-align: center;
2020-09-14 16:24:02 +02:00
h1 {
font-size: 2em;
}
}
.section-articles {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 1rem;
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: grid;
grid-template-areas: "img h1"
"img p";
grid-template-columns: 120px 1fr;
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 {
border: 0px solid rgb(40, 40, 60);
border-radius: 5px 0px 0px 5px;
2020-09-14 16:24:02 +02:00
grid-area: img;
height: 180px;
2020-09-14 16:24:02 +02:00
margin: -20px;
object-fit: cover;
width: 120px;
2020-09-14 16:24:02 +02:00
}
h1 {
grid-area: h1;
margin: 0px;
2020-09-14 16:24:02 +02:00
}
.meta {
grid-area: p;
margin: 0;
2020-09-14 16:24:02 +02:00
}
.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: 900px) {
.section-articles {
grid-template-columns: repeat(1, 1fr);
}
}
2020-09-14 16:24:02 +02:00
.section-projects {
display: grid;
grid-gap: 1rem;
grid-template-columns: repeat(3, 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: 170px;
max-width: calc(100% + 40px);
object-fit: cover;
order: -1;
2020-09-14 16:24:02 +02:00
}
h1 {
margin-top: 0;
}
.meta {
margin: 0;
}
.status {
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: 900px) {
.section-projects {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 600px) {
.section-projects {
grid-template-columns: repeat(1, 1fr);
}
}
2020-09-14 16:24:02 +02:00
@import 'partials/footer';