2021-01-11 19:24:57 +01:00
|
|
|
#content{
|
|
|
|
background-color: $back-color;
|
|
|
|
padding: 20px 20%;
|
|
|
|
img {
|
|
|
|
max-width: 40%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
article{
|
|
|
|
border: 2px solid $accent-color;
|
|
|
|
border-radius: 20px;
|
|
|
|
padding: 10px;
|
2021-03-28 20:43:34 +02:00
|
|
|
margin-right: 10px;
|
2021-01-20 21:28:02 +01:00
|
|
|
flex: 1 1 0;
|
|
|
|
width: 0;
|
2021-03-28 20:43:34 +02:00
|
|
|
box-sizing: border-box;
|
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
|
|
|
}
|
|
|
|
|
2021-01-20 21:32:08 +01:00
|
|
|
#banner img {
|
2021-01-20 22:38:08 +01:00
|
|
|
max-width: 100% !important;
|
2021-01-20 22:35:57 +01:00
|
|
|
}
|
|
|
|
.breakWord{
|
|
|
|
word-wrap: break-word;
|
2021-03-09 22:58:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.clickSpan{
|
|
|
|
color: $accent-color;
|
|
|
|
text-decoration: underline;
|
|
|
|
transition: background-color $link-hover-animation-time linear;
|
2021-03-22 21:04:20 +01:00
|
|
|
cursor: pointer;
|
2021-03-09 22:58:45 +01:00
|
|
|
|
|
|
|
&:hover{
|
|
|
|
color: $accent-color-2;
|
|
|
|
}
|
2021-05-24 20:11:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#matomo-iframe {
|
|
|
|
border: 0;
|
|
|
|
height: 200px;
|
|
|
|
width: 600px;
|
|
|
|
background-color: $text-color;
|
2021-01-11 19:24:57 +01:00
|
|
|
}
|