Files
www.yevi.org/src/components/HomepageFeatures/styles.module.css
yehor 727906d461
All checks were successful
Build release image / build (push) Successful in 1m17s
Update theme
2025-10-07 22:58:30 +03:00

54 lines
723 B
CSS

.features {
display: flex;
align-items: center;
padding: 2rem 0;
width: 100%;
}
.featureBlock {
padding-bottom: 1rem;
}
@media (max-width: 996px) {
.featureBlock {
--ifm-col-width: 50%;
}
}
@media (max-width: 500px) {
.featureBlock {
--ifm-col-width: 100%;
}
}
.featureSvg {
height: 60px;
width: 60px;
}
.featureSvg path {
fill: var(--ifm-link-color) !important;
}
.featureBlock:hover .featureSvg path {
opacity: 0.7;
}
.featureLink {
display: contents;
color: unset;
}
.featureLink:hover {
text-decoration: none;
color: unset;
}
.featureLink:visited {
text-decoration: none;
color: unset;
}
.featureLink p {
color: var(--ifm-color-secondary-contrast-foreground);
}