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.
 
 
 

94 lines
1.4 KiB

@import 'styles/variables.scss';
.container {
color: var(--primaryText);
font-size: 12px;
width: 75%;
margin: 0 auto;
background: var(--darkestBackground);
}
.header {
display: flex;
flex-direction: row;
justify-content: space-between;
padding: 20px;
section {
&:nth-child(1) {
font-size: 16px;
color: var(--primaryText);
svg {
width: 16px;
height: 16px;
vertical-align: top;
g {
stroke: var(--primaryText);
}
}
span:nth-child(2) {
margin-left: 5px;
}
}
&.details {
text-align: right;
div:nth-child(1) {
margin-bottom: 5px;
}
svg {
width: 12px;
height: 12px;
vertical-align: middle;
}
.link {
text-decoration: underline;
margin-left: 5px;
cursor: pointer;
transition: all 0.25s;
&:hover {
opacity: 0.5;
}
}
}
}
}
.amount {
margin-top: 50px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
padding: 20px;
font-size: 40px;
}
.date {
text-align: center;
margin: 20px 0 50px 0;
padding: 20px;
}
.footer {
background: var(--lightestBackground);
padding: 20px;
text-align: center;
p {
text-decoration: underline;
cursor: pointer;
transition: all 0.25s;
&:hover {
opacity: 0.5;
}
}
}