58 lines
742 B
CSS
58 lines
742 B
CSS
@import url(../style.css);
|
|
|
|
img {
|
|
width: 100%;
|
|
max-width: 512px;
|
|
min-width: 256px;
|
|
}
|
|
|
|
div.side-by-side {
|
|
display: flex;
|
|
flex: 1 1 0px;
|
|
flex-direction: row;
|
|
}
|
|
|
|
div.side-by-side article {
|
|
margin: 0 32px;
|
|
flex-basis: 100%;
|
|
}
|
|
|
|
a.hidden {
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
text-decoration: none;
|
|
color: var(--main-ft-color);
|
|
}
|
|
|
|
div.side-by-side article.center-vert {
|
|
margin: auto 32px;
|
|
}
|
|
|
|
h1 a.hidden {
|
|
font-weight: bold;
|
|
}
|
|
|
|
h3 {
|
|
margin-left: .65em;
|
|
}
|
|
|
|
article header {
|
|
margin-top: 5px;
|
|
font-size: large;
|
|
}
|
|
|
|
main p {
|
|
width: 100%;
|
|
}
|
|
|
|
@media only screen and (max-width: 1152px) {
|
|
div.side-by-side {
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
@media only screen and (min-width: 1152px) {
|
|
div.side-by-side {
|
|
flex-direction: row;
|
|
}
|
|
} |