33 lines
No EOL
537 B
SCSS
33 lines
No EOL
537 B
SCSS
@use "./base.scss";
|
|
|
|
// put your custom CSS here!
|
|
@media (min-width: 600px) {
|
|
.book > p > img:first-child {
|
|
float: right;
|
|
margin-left: 2em;
|
|
}
|
|
}
|
|
|
|
li.section-li > .section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
align-content: center;
|
|
justify-content: flex-start;
|
|
margin: 1em;
|
|
}
|
|
|
|
li.section-li > .section > .meta {
|
|
flex-basis: unset;
|
|
font-size: x-small;
|
|
}
|
|
|
|
ul.section-ul {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.section-li>.section>.tags {
|
|
font-size: small;
|
|
} |