tsukuba-me
Version:
University of Tsukuba school life utilities. Manaba attend (atmnb) helper, and PaperCut U.T. uploader.
31 lines (26 loc) • 414 B
CSS
html, body {
background-color: beige;
height: 100%;
width: 100%;
}
/* Grid */
#body-grid {
display: grid;
grid-template-areas:
"h"
"m"
"f";
grid-template-rows: auto 1fr auto;
}
#main-grid {
display: grid;
grid-template-rows: repeat(3 1fr);
align-content: center;
}
.ml-12 { margin-left: 12px;}
.my-modal {
display: none;
}
.is-shown {
display: block;
}