2025-05-27 17:35:29 +02:00
|
|
|
.testnet {
|
|
|
|
|
@media (min-width: 801px) {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 800px) {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 1em;
|
|
|
|
|
background-color: #000;
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
padding: 1em;
|
2025-06-11 22:37:44 +02:00
|
|
|
--thumbnail: url(/img/poster.jpg);
|
2025-05-27 17:35:29 +02:00
|
|
|
|
|
|
|
|
> div:first-child {
|
|
|
|
|
min-width: 155px;
|
|
|
|
|
height: 90px;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
2025-06-18 02:28:14 +02:00
|
|
|
align-items: center;
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
.image {
|
|
|
|
|
width: 155px;
|
2025-07-09 10:50:37 +02:00
|
|
|
height: 67px;
|
2025-06-18 02:28:14 +02:00
|
|
|
}
|
|
|
|
|
|
2025-07-15 12:18:16 +02:00
|
|
|
> .icon:first-child {
|
2025-06-18 02:28:14 +02:00
|
|
|
position: relative;
|
2025-07-15 12:18:16 +02:00
|
|
|
left: 18px;
|
2025-06-18 02:28:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.shield {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
2025-05-27 17:35:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
> div:nth-child(2) {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
|
|
p:first-child {
|
|
|
|
|
font-family: Azeret Mono;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 0.75em;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
color: white;
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
|
|
|
|
|
span {
|
|
|
|
|
color: var(--grey-80);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p + p {
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
font-size: 1em;
|
|
|
|
|
color: var(--grey-80);
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-07-15 12:18:16 +02:00
|
|
|
|
|
|
|
|
.background-testnet {
|
|
|
|
|
background-image: url(/img/testnet.webp);
|
|
|
|
|
background-size: cover;
|
|
|
|
|
height: 67px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
|
|
& + .icon {
|
|
|
|
|
position: relative;
|
|
|
|
|
left: -18px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-05-27 17:35:29 +02:00
|
|
|
}
|