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

52 lines
909 B

@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
* {
-webkit-font-smoothing: antialiased;
box-sizing: border-box;
}
html,
body {
margin: 0px;
height: 100%;
}
body {
display: flex;
flex-direction: column;
background-color: var(--neutral-200);
}
header {
display: flex;
padding: 16px 32px;
align-items: center;
background-color: var(--neutral-100);
}
.title {
flex-grow: 1;
}
.content {
flex-grow: 1;
z-index: 2;
left: 0px;
right: 0px;
background-color: var(--primary-100);
border-radius: 32px;
box-shadow: 0px 5px 50px #e4e0dd;
padding: 16px;
margin: 16px 16px;
overflow-y: scroll;
}
footer {
z-index: 3;
bottom: 0px;
left: 0px;
right: 0px;
display: flex;
height: 64px;
padding: 8px 16px;
align-items: center;
background-color: var(--neutral-100);
}

Powered by TurnKey Linux.