website/scss/_content.scss
2021-02-26 23:10:31 +01:00

44 lines
No EOL
570 B
SCSS

#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;
flex: 1 1 0;
width: 0;
h2{
text-align: center;
margin: 0;
}
&:last-child{
margin-right: 0;
}
}
#blog{
width: 100%;
display: flex;
justify-content: center;
align-items: stretch;
}
#homeImage{
float: left;
margin-right: 20px;
}
#banner img {
max-width: 100% !important;
}
.breakWord{
word-wrap: break-word;
}