fixing some styling issues with features and support pages

This commit is contained in:
danfunk 2023-09-27 14:54:16 -04:00
parent b64fca3856
commit 6f065dd6ad

View File

@ -90,36 +90,50 @@ div.admonition p.last {
}
.section-support {
background-size: auto;
background: linear-gradient(
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
background-image: linear-gradient(
to top,
rgba(0, 0, 0, 0),
rgba(0, 0, 0, 0.6)
), url("/images/features/photos/support.jpg") no-repeat;
), url("/images/features/photos/support.jpg");
}
.section-support .content {
max-width: 800px;
background-color: #ffffff;
border: 1px solid black;
opacity: 0.8;
border-radius: 8px;
padding: 15px;
}
.section-features {
background-size: auto;
background: linear-gradient(
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
background-image: linear-gradient(
to top,
rgba(0, 0, 0, 0),
rgba(0, 0, 0, 0.6)
), url("/images/features/photos/coffee.jpg") no-repeat;
), url("/images/features/photos/coffee.jpg");
}
.section-features .title, .section-features .subtitle, .section-support .title, .section-support .subtitle {
color: #fff !important;
.section-features .title, .section-features .subtitle, .section-support .title, .section-support .subtitle,
.section-features p, .section-features h2, .section-support p, .section-support h2 {
color: #fff;
text-shadow: 0 1px 0 black;
}
section.section-support .content p {
color: #4a4a4a;
text-shadow: none;
}
.section-features .subtitle.is-muted {
color: #ddd;
}
.features {