Files
kredits-web/app/styles/components/_proposal-list.scss
T

56 lines
1.1 KiB
SCSS

ul.proposal-list {
clear: both;
width: 100%;
list-style: none;
li {
// display: block;
padding: 0 1.2rem;
line-height: 4.2rem;
background-color: rgba(255,255,255,0.1);
font-size: 1.4rem;
border-bottom: 1px solid rgba(255,255,255,0.2);
&:first-of-type {
border-top: 1px solid rgba(255,255,255,0.2);
}
.amount {
font-weight: 500;
}
.symbol {
font-size: 1rem;
font-weight: 500;
padding-left: 0.2rem;
}
.recipient {
font-weight: 500;
}
.votes {
font-size: 1rem;
color: lightblue;
padding-left: 1rem;
}
button {
display: inline-block;
float: right;
height: 2rem;
line-height: 2rem;
margin-top: 1.1rem;
padding: 0 0.6rem;
border: 1px solid rgba(22, 21, 40, 1);
background-color: rgba(22, 21, 40, 0.6);
color: lightblue;
border-radius: 3px;
font-weight: 500;
text-transform: uppercase;
cursor: pointer;
&:hover {
background-color: rgba(22, 21, 40, 0.8);
}
}
}
}