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.
 
 
 
 
 
 

37 lines
648 B

@import '../../scss/variables.scss';
.fundbar {
cursor: pointer;
text-align: center;
margin: 1rem;
display: grid;
grid-template: 1fr / 1fr;
.totals {
pointer-events: none;
margin-top: 1rem;
}
h3 {
margin: auto auto 0 auto;
}
.front {
grid-area: 1/1/2/2;
border-radius: 1ch;
pointer-events: none;
transition: all 0.2s ease-out;
border: 2px solid $color-dark;
display: flex;
flex-direction: column;
padding: 2ch;
text-shadow: 2px 2px #2223, -1px -1px #fffa;
}
.back {
grid-area: 1/1/2/2;
background: #222;
border-radius: 1ch;
border: 4px solid #3334;
}
}