34 lines
431 B
CSS
34 lines
431 B
CSS
.features {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 2rem 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.featureBlock {
|
|
padding-bottom: 1rem;
|
|
}
|
|
|
|
.featureSvg {
|
|
height: 100px;
|
|
width: 100px;
|
|
}
|
|
|
|
.featureSvg path {
|
|
fill: var(--ifm-link-color) !important;
|
|
}
|
|
|
|
.featureLink {
|
|
display: contents;
|
|
color: unset;
|
|
}
|
|
|
|
.featureLink:hover {
|
|
text-decoration: none;
|
|
color: unset;
|
|
}
|
|
|
|
.featureLink:visited {
|
|
text-decoration: none;
|
|
color: unset;
|
|
} |