60 lines
813 B
Plaintext
60 lines
813 B
Plaintext
@import "styles/normalize";
|
|
|
|
@import "styles/vars";
|
|
@import "styles/fonts";
|
|
@import "styles/common";
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
|
|
font-family: 'Monocraft', serif;
|
|
}
|
|
|
|
#app {
|
|
width: 100dvw;
|
|
height: 100dvh;
|
|
background-image: url(images/bg.jpg);
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
background-color: @color-bg;
|
|
}
|
|
|
|
.app-table {
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
.app-td {
|
|
padding: 2px;
|
|
}
|
|
|
|
.app-tbody {
|
|
height: 96%;
|
|
}
|
|
}
|
|
|
|
.task-panel {
|
|
.windows-border();
|
|
|
|
font-family: 'fantasy', 'Monocraft', serif;
|
|
font-size: inherit;
|
|
color: @color-black;
|
|
background-color: @color-grey;
|
|
}
|
|
|
|
.form {
|
|
input, button {
|
|
margin-bottom: 1%;
|
|
}
|
|
|
|
&-x {
|
|
> div {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
|
|
&-submit button {
|
|
margin-top: 5%;
|
|
}
|
|
} |