abtmtr-v13/assets/components/about-boxes/style.css
2024-08-20 14:30:37 -05:00

38 lines
751 B
CSS

.Aboutbox {
display: flex;
flex-direction: column;
align-items: center;
justify-content: start;
gap: 8px;
width: 100%;
box-sizing: border-box;
border: 1px solid currentColor;
padding: 8px;
background: var(--background) var(--tiles-diag-black);
.AboutboxElement {
width: 100%;
height: 200px;
display: grid;
box-sizing: border-box;
grid-template-columns: 1fr calc(200px - 2px);
border: 1px solid currentColor;
background: var(--background);
.AboutboxElementText {
display: inline-block;
padding: 1rem;
h1 {
margin-top: 0;
margin-bottom: 1rem;
font-family: var(--font-text-top);
}
}
.AboutboxElementImage {
height: 100%;
}
}
}