website/assets/home.scss

40 lines
791 B
SCSS
Raw Normal View History

2022-11-28 18:33:52 +01:00
#introduction {
align-items: center;
background: var(--vriish-gradient);
display: flex;
flex-direction: column;
padding: 3em 0;
gap: .5em;
justify-content: center;
z-index: 2;
h1, p {
margin: 0;
}
}
#latest-posts {
display: flex;
flex-direction: row;
gap: 1em;
hyphens: auto;
overflow-x: scroll;
.post-group {
background: var(--vriish-gradient);
border-radius: .5em;
display: flex;
flex-direction: column;
text-shadow: var(--vriish-gradient-shadow);
min-width: 15em;
width: 33.333%;
.title {
flex: auto;
margin: 1em;
}
aside {
margin: 1em;
}
}
a {
text-decoration: none;
}
}