You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
532 B
CSS

body {
display: flex;
flex-direction: column;
margin: 0px;
width: 100vw;
height: 100vh;
font-family: sans-serif;
font-size: 14px;
}
.page-title {
font-size: larger;
font-weight: bold;
padding: 10px;
padding-bottom: 0px;
}
.page-content {
flex: 1;
min-height: 0;
margin: 10px;
box-shadow: 5px 7px #777;
}
.hidden {
display: none !important;
}
/* Disabled/empty link */
a[href="#"] {
color: #555 !important;
cursor: not-allowed;
pointer-events: none;
}