2023.12.19.09.12

This commit is contained in:
2023-12-19 09:12:42 +01:00
parent f6f9819058
commit cafc808395
26 changed files with 939 additions and 146 deletions

110
less/app.less Normal file
View File

@@ -0,0 +1,110 @@
@dark: #222f3e;
@light-grey: #576574;
@light: #c8d6e5;
@green: #1dd1a1;
@yellow: #feca57;
@red: #ff6b6b;
@pink: #ff9ff3;
@purple: #5f27cd;
@cyan: #48dbfb;
@blue: #54a0ff;
:root {
--dark: @dark;
--light-grey: @light-grey;
--light: @light;
--green: @green;
--yellow: @yellow;
--red: @red;
--pink: @pink;
--purple: @purple;
--cyan: @cyan;
--blue: @blue;
}
@font-face {
font-family: 'robotomono-light';
src: url('/assets/font/RobotoMono-Light.ttf');
}
* {
font-family: "robotomono-light";
}
body {
background-color: var(--dark);
color: var(--light);
}
.nav {
width: 1200px;
margin: auto;
padding: 10px;
border: 1px solid;
}
.container {
width: 1200px;
margin: auto;
padding: 10px;
border: 1px solid;
}
a {
color: var(--cyan);
padding: 5px;
}
details {
width: 100%;
}
form {
display: flex;
flex-wrap: wrap;
}
form .form-group {
width: 100%;
}
form .form-group.half {
width: 50%;
}
form .form-group .text {
width: 200px;
text-align: right;
padding: 5px;
flex-shrink: 0;
}
form .form-group .input {
width: 100%;
padding: 5px;
}
form .form-group .input input,
form .form-group .input textarea,
form .form-group .input select {
width: 100%;
box-sizing: border-box;
}
form .form-group {
display: flex;
}
input[type="number"],input[type="time"],input[type="date"],select{
text-align: right;
}
input[type="number"],input[type="time"],input[type="date"],select,input[type="text"],textarea{
background:@light-grey;
border-color: transparent;
}
@import "table.less";
@import "responsive.less";

16
less/responsive.less Normal file
View File

@@ -0,0 +1,16 @@
@media (max-width: 1250px) {
.nav,
.container {
width: 95vw;
margin: auto;
padding: 1vw;
}
}
@media (max-width: 800px) {
form .form-group.half{
width:100%;
}
}

74
less/table.less Normal file
View File

@@ -0,0 +1,74 @@
table {
width: 100%;
}
table td.amount {
text-align: right;
}
table td.income {
color: var(--green);
}
table td.expense {
color: var(--red);
}
table td.transfer {
color: var(--pink);
}
table td.amount:after {
content: " €";
}
th {
text-align: left;
}
th.middle {
text-align: center;
}
th.right {
text-align: right
}
tr:nth-child(3n+2) {
background-color: lighten(@dark, 5%);
}
tr:nth-child(3n+3) {
background-color: lighten(@dark, 10%);
}
tr{
td:nth-child(1){
border-left:solid transparent 5px;
text-align: right;
padding-right: 5px;
}
}
table.fullList{
tr.transfer:nth-child(2n+1) {
td:nth-child(1) {
border-top: 1px solid @pink;
border-left: 5px solid @pink;
}
td:nth-child(2) {
border-top: 1px solid @pink;
}
}
tr.transfer:nth-child(2n+2) {
td:nth-child(1) {
border-left: 5px solid @pink;
border-bottom: 1px solid @pink;
}
td:nth-child(2) {
border-bottom: 1px solid @pink;
}
}
}