34 lines
582 B
SCSS
34 lines
582 B
SCSS
#buy-and-sell {
|
|
.explain {
|
|
text-align: center;
|
|
margin-top: 1em;
|
|
}
|
|
.buy-and-sell-icon {
|
|
display: inline-block;
|
|
width: 50px;
|
|
height: 50px;
|
|
border-radius: 50%;
|
|
box-shadow: $subtle-box-shadow;
|
|
background-color: #fa912b;
|
|
img {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
}
|
|
.explain {
|
|
&-heading {
|
|
font-size: 20px;
|
|
margin: 1rem;
|
|
}
|
|
&-description {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
opacity: .6;
|
|
max-width: 300px;
|
|
padding: 0 1em;
|
|
}
|
|
}
|
|
.item-note {
|
|
color: $light-gray;
|
|
}
|
|
}
|