marty.tf/boxes.css
2026-06-19 18:24:27 +02:00

63 lines
No EOL
833 B
CSS

.box {
color: #cdd6f4;
text-align: center;
background-color: #181825df;
border-style:ridge;
border-color: #f5e0dc;
border-radius: 5px;
padding: 5px;
margin: 5px;
height: inherit;
}
/* - */
/* - */
/* - */
/* - */
/* - */
/* - */
.flexbox-h {
display: flex;
flex-wrap: nowrap;
flex-direction: column;
}
/* - - - - - - */
.flexbox-v {
display: flex;
flex-wrap: nowrap;
flex-direction: row;
}
#header {
flex-grow: 0;
min-width: 200px;
}
#links {
flex-grow: 1;
display: flex;
}
#content_container {
flex-grow: 1;
height: 70vh;
min-height: 625px;
overflow: hidden;
}
#content {
height: calc(70vh - 25px);
min-height: 600px;
overflow: scroll;
}
#content_embed {
height: 100%;
}
#townsquare-root {
height: 160px;
}