website/scss/_content.scss

45 lines
576 B
SCSS
Raw Normal View History

2021-01-11 19:24:57 +01:00
#content{
background-color: $back-color;
width: 100%;
padding: 20px 20%;
img {
max-width: 40%;
}
}
article{
border: 2px solid $accent-color;
border-radius: 20px;
padding: 10px;
margin-right: 20px;
2021-01-20 21:28:02 +01:00
flex: 1 1 0;
width: 0;
2021-01-20 21:09:54 +01:00
word-wrap: break-word;
p{
word-wrap: break-word;
}
2021-01-11 19:24:57 +01:00
h2{
text-align: center;
margin: 0;
}
&:last-child{
margin-right: 0;
}
}
#blog{
width: 100%;
display: flex;
justify-content: center;
2021-01-20 21:30:03 +01:00
align-items: stretch;
2021-01-11 19:24:57 +01:00
}
#homeImage{
float: left;
margin-right: 5px;
}
#banner img {
width: 100%;
2021-01-11 19:24:57 +01:00
}