Site/portfolio/portfolio.css
2024-10-29 16:00:49 +01:00

54 lines
680 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);
}
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;
}
}