program styles and icons

This commit is contained in:
Lyn Fugmann 2024-09-27 15:36:08 +02:00
parent 79e9051db6
commit e376bc1389
4 changed files with 52 additions and 3 deletions

View file

@ -69,6 +69,24 @@ p {
line-height: 1.8;
}
a.btn {
display: block;
width: fit-content;
margin: 1em 0;
border: 1px solid var(--color-primary);
border-radius: 25px;
padding: .75rem 1.6rem;
text-decoration: none;
color: var(--color-primary);
transition: .2s ease-out;
transition-property: color, background-color;
}
a.btn:hover {
background-color: var(--color-primary);
color: var(--color-button-active);
}
@media (width < 640px) {
h1 {
font-size: 1.8em;
@ -90,7 +108,7 @@ p {
--page-width: 1280px;
--color-text: #495057;
--color-primary: {{ ese.color }};
--color-livestream-active: #fff;
--color-button-active: #fff;
--color-background-page: #fefefe;
--color-background-header: rgba(255,255,255,.92);
}