(Grav GitSync) Automatic Commit from GitSync

This commit is contained in:
GitSync
2026-08-25 17:38:09 +00:00
parent a47d464d43
commit 0871a0f57d
6 changed files with 176 additions and 15 deletions
+45
View File
@@ -179,3 +179,48 @@ footer {
.gallery-item:hover .gallery-thumb img {
transform: scale(1.05);
}
.content-text h2 {
font-family: 'Hobo Std', Helvetica, Verdana, Arial;
color: var(--color-brand);
font-size: 1.4em;
margin-top: 1.75rem;
margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
.content-text h2 {
font-size: 1.7em;
}
}
@media (min-width: 1200px) {
.content-text h2 {
font-size: 2em;
}
}
.btn-brand {
background-color: var(--color-brand);
border-color: var(--color-brand);
color: #fff;
}
.btn-brand:hover,
.btn-brand:focus {
background-color: var(--color-text);
border-color: var(--color-text);
color: #fff;
}
.btn-outline-brand {
border-color: var(--color-brand);
color: var(--color-brand);
background-color: transparent;
}
.btn-outline-brand:hover,
.btn-outline-brand:focus {
background-color: var(--color-brand);
color: #fff;
}