You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
600 B

.aboutSection {
display: grid;
grid-auto-flow: row;
width: 100%;
grid-template-columns: 70% auto;
gap: var(--padding-lg);
}
.aboutSectionReverse {
display: grid;
grid-auto-flow: row;
width: 100%;
grid-template-columns: auto 70%;
gap: var(--padding-lg);
}
.aboutSection img, .aboutSectionReverse img {
border-radius: var(--padding-sm);
}
.tag {
font-size: 0.90rem;
background-color: var(--theme-color);
color: white;
padding: 0.4em 0.8em;
border-radius: var(--padding-xl);
text-transform: lowercase;
}