Files
CyBySide/public/css/about.css
Cyper 2d0134a51b
All checks were successful
Deploy Blog to Folder / deploy (push) Successful in 4s
feat: Added about page content
note: need to find suitable images for placeholders
2025-08-18 02:41:41 -04:00

53 lines
980 B
CSS

.title {
display: flex;
flex-direction: column;
}
.title h1 {
font-size: 3rem;
font-weight: 300;
text-align: center;
margin: 0 2rem 2rem 2rem;
}
.title img {
width: 100%;
}
.content {
padding: 2rem 2rem;
font-size: 1.25rem;
}
.content > p {
text-align: center;
}
.content > p:not(:first-child) {
margin-top: 2rem;
}
.alternating-background-container > :nth-child(2n-1) {
background-color: var(--primary-alternating-color);
}
.alternating-background-container > :nth-child(2n) {
background-color: var(--secondary-alternating-color);
}
.alternating-background-container > div {
padding: 2rem 0;
}
.alternating-primary-brown {
--primary-alternating-color: rgba(var(--brown), .21);
}
@media (min-width: 992px) {
.title {
flex-direction: row;
}
.title-reverse {
flex-direction: row-reverse;
}
.title > div {
width: 50%;
}
.content {
padding: 0 2rem;
}
.alternating-background-container > div {
padding: 4rem 0;
}
}