mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
68 lines
1.4 KiB
CSS
68 lines
1.4 KiB
CSS
.coin {
|
|
border: 1px solid var(--brand-grey-lighter);
|
|
border-radius: var(--border-radius);
|
|
padding: calc(var(--spacer) / 2);
|
|
}
|
|
|
|
.coin:first-child {
|
|
border-top-right-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
}
|
|
|
|
.coin:last-child {
|
|
border-top-left-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
margin-left: -1px;
|
|
}
|
|
|
|
.icon {
|
|
composes: box from '../../../atoms/Box.module.css';
|
|
padding: calc(var(--spacer) / 1.5);
|
|
width: 6rem;
|
|
height: 6rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border: 1px solid var(--brand-grey-lighter);
|
|
border-radius: 50%;
|
|
background-color: var(--brand-white);
|
|
margin-bottom: calc(var(--spacer) / 2);
|
|
}
|
|
|
|
.coin:last-child .icon path {
|
|
fill: var(--brand-grey-dimmed);
|
|
stroke: var(--brand-black);
|
|
stroke-width: 5px;
|
|
stroke-linejoin: round;
|
|
}
|
|
|
|
.symbol {
|
|
text-align: center;
|
|
display: block;
|
|
font-size: var(--font-size-base);
|
|
margin-bottom: calc(var(--spacer) / 4);
|
|
}
|
|
|
|
.data {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
text-align: center;
|
|
}
|
|
|
|
.weight {
|
|
width: 100%;
|
|
margin-top: calc(var(--spacer) / 2);
|
|
padding-top: calc(var(--spacer) / 2);
|
|
text-transform: uppercase;
|
|
font-size: var(--font-size-small);
|
|
color: var(--color-secondary);
|
|
border-top: 1px solid var(--brand-grey-lighter);
|
|
}
|
|
|
|
.weight strong {
|
|
color: var(--brand-grey);
|
|
font-size: var(--font-size-base);
|
|
}
|