mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 17:47:26 +00:00
48 lines
783 B
SCSS
48 lines
783 B
SCSS
.download-cards {
|
|
@media (min-width: 601px) and (max-width: 950px) {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
}
|
|
|
|
.download-card {
|
|
width: 10rem;
|
|
|
|
border: 1px solid var(--lbry-gray-1);
|
|
display: inline-flex;
|
|
list-style-type: none;
|
|
min-width: 125px;
|
|
padding-top: 1rem;
|
|
padding-bottom: 1rem;
|
|
text-align: center;
|
|
|
|
@media (max-width: 600px) {
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
a,
|
|
span {
|
|
display: block;
|
|
}
|
|
|
|
a {
|
|
width: 100%;
|
|
}
|
|
|
|
span {
|
|
font-size: 2rem;
|
|
margin: 0 auto 1rem;
|
|
position: relative;
|
|
width: 100%;
|
|
|
|
// &::after {
|
|
// width: 100%; height: 1px;
|
|
// top: 1.55rem; left: 0;
|
|
|
|
// background-color: $lbry-gray-1;
|
|
// content: "";
|
|
// position: absolute;
|
|
// z-index: -1;
|
|
// }
|
|
}
|
|
}
|