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.
116 lines
1.8 KiB
116 lines
1.8 KiB
@import 'styles/variables.scss';
|
|
|
|
.container {
|
|
color: var(--primaryText);
|
|
}
|
|
|
|
.content {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
background: var(--primaryColor);
|
|
width: 85%;
|
|
margin: 50px auto;
|
|
padding: 30px 0;
|
|
|
|
.left {
|
|
padding: 0 60px;
|
|
text-align: center;
|
|
|
|
h2 {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.qrcode {
|
|
border-style: solid;
|
|
border-color: white;
|
|
border-width: 2px;
|
|
margin-bottom: 20px;
|
|
}
|
|
}
|
|
|
|
.right {
|
|
width: 75%;
|
|
min-height: 220px;
|
|
border-left: 1px solid var(--highlight);
|
|
padding: 10px 60px;
|
|
|
|
.details {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
margin-bottom: 40px;
|
|
|
|
.amount {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
position: relative;
|
|
font-size: 40px;
|
|
}
|
|
|
|
.date {
|
|
font-size: 12px;
|
|
text-align: right;
|
|
|
|
.notPaid {
|
|
color: var(--lightningOrange);
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.paid {
|
|
color: var(--superGreen);
|
|
margin-top: 5px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.memo,
|
|
.request {
|
|
h4 {
|
|
font-size: 10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
p {
|
|
word-wrap: break-word;
|
|
max-width: 450px;
|
|
}
|
|
}
|
|
|
|
.memo {
|
|
margin-bottom: 40px;
|
|
|
|
p {
|
|
font-size: 20px;
|
|
}
|
|
}
|
|
|
|
.request p {
|
|
font-size: 10px;
|
|
max-width: 450px;
|
|
line-height: 1.5;
|
|
}
|
|
}
|
|
}
|
|
|
|
.actions {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
|
|
div {
|
|
text-align: center;
|
|
margin: 35px 10px;
|
|
width: 235px;
|
|
padding: 20px 10px;
|
|
background: var(--secondaryColor);
|
|
cursor: pointer;
|
|
transition: 0.25s all;
|
|
opacity: 0.75;
|
|
|
|
&:hover {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|
|
|