116 lines
1.4 KiB
SCSS
116 lines
1.4 KiB
SCSS
.app {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
// justify-content: space-around;
|
|
font-size: calc(10px + 2vmin);
|
|
color: white;
|
|
|
|
h1 {
|
|
margin-top: 2.5vmin;
|
|
margin-bottom: 1vmin;
|
|
}
|
|
}
|
|
|
|
button {
|
|
cursor: pointer;
|
|
padding: 2ch;
|
|
background: #aaa;
|
|
border: 0;
|
|
border-radius: 1ch;
|
|
|
|
&:hover {
|
|
background: #fff;
|
|
}
|
|
|
|
&:active {
|
|
background: #222;
|
|
}
|
|
transition: all 0.1s ease-out;
|
|
}
|
|
|
|
a {
|
|
color: #61dafb;
|
|
}
|
|
|
|
.error {
|
|
font-size: 1ch;
|
|
color: red;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.funds,
|
|
.transactions {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
// height: 50vh;
|
|
}
|
|
|
|
nav {
|
|
padding-top: 2ch;
|
|
padding-bottom: 2ch;
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: space-around;
|
|
background: #111a;
|
|
}
|
|
|
|
.totals {
|
|
z-index: 9;
|
|
.above {
|
|
margin-top: 5ch;
|
|
}
|
|
.bottom {
|
|
margin-bottom: 5ch;
|
|
}
|
|
}
|
|
|
|
.todo {
|
|
color: #111a;
|
|
}
|
|
|
|
.dank-form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
background: #1115;
|
|
border: 1ch #1117 solid;
|
|
padding: 3ch;
|
|
border-radius: 1ch;
|
|
label {
|
|
margin: 0.5ch;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
|
|
input {
|
|
margin-left: 2ch;
|
|
}
|
|
}
|
|
|
|
h3 {
|
|
color: #666;
|
|
}
|
|
|
|
button {
|
|
margin: 4ch 1ch;
|
|
}
|
|
}
|
|
|
|
footer {
|
|
position: fixed;
|
|
left: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
background: #111a;
|
|
padding: 0 2ch;
|
|
font-size: 10pt;
|
|
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
p {
|
|
margin: 1ch;
|
|
}
|
|
}
|