Files
new-codex.storage/@library/testnet.css
T
2025-05-27 17:35:29 +02:00

47 lines
847 B
CSS

.testnet {
@media (min-width: 801px) {
display: none;
}
@media (max-width: 800px) {
display: flex;
gap: 1em;
background-color: #000;
border-radius: 16px;
padding: 1em;
> div:first-child {
min-width: 155px;
height: 90px;
display: flex;
justify-content: space-between;
}
> 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;
}
}
}
}