template/src/main/css/snippets/common.css

61 lines
730 B
CSS

/* Base elements */
html, body {
height: 100%;
margin: 0;
padding: 0;
}
body {
color: black;
}
#contents {
margin-top: 5rem;
margin-bottom: 5rem;
}
noscript p {
color: red;
font-weight: bold;
}
/* Main element display state */
main.pageHidden {
display: none;
}
main.pageVisible {
display: flex;
flex-direction: column;
min-height: 100%;
}
.pageContents.pageVisible {
flex: 1;
}
/* Header */
header .container {
text-align: center;
}
/* Footer */
footer {
margin-bottom: 3rem;
}
#footerVersion {
float: right;
}
/* Make arrow next to dropdown visible */
select {
-webkit-appearance: menulist;
-moz-appearance: menulist;
appearance: auto;
}