Template
Main Page/styles.css
From Dogcraft Wiki
(Created page with ".main-page-wrapper { display: flex; flex-direction: row; }") |
No edit summary |
||
(6 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
.main-page-wrapper { | .main-page-wrapper { | ||
display: flex; | display: flex; | ||
flex-direction: | flex-direction: column; | ||
} | |||
.desktop-gallery { | |||
position: absolute; | |||
padding: 1.35em 0; | |||
width: 100%; | |||
} | |||
.desktop-gallery .welcome-box { | |||
margin: auto; | |||
width: 65%; | |||
} | |||
.attract-boxes { | |||
display: flex; | |||
gap: 1rem; | |||
justify-content:center; | |||
padding-top: 0.25rem; | |||
} | |||
.news-scroller { | |||
max-height: 12em; | |||
overflow-y: auto; | |||
} | } |
Latest revision as of 20:38, 30 September 2023
.main-page-wrapper {
display: flex;
flex-direction: column;
}
.desktop-gallery {
position: absolute;
padding: 1.35em 0;
width: 100%;
}
.desktop-gallery .welcome-box {
margin: auto;
width: 65%;
}
.attract-boxes {
display: flex;
gap: 1rem;
justify-content:center;
padding-top: 0.25rem;
}
.news-scroller {
max-height: 12em;
overflow-y: auto;
}