add btn hover state

This commit is contained in:
2025-04-08 16:53:24 +05:00
parent 5a65700791
commit 98ce72bd55
3 changed files with 14 additions and 14 deletions

View File

@ -42,6 +42,11 @@ h2 {
padding: 0.75em 1.5em;
text-decoration: none;
font-size: 16px;
transition: all 0.25s ease;
}
.btn:hover {
text-decoration: none;
transform: scale(1.1);
}
.btn--solid {
background-color: var(--foreground-text);
@ -57,12 +62,6 @@ h2 {
text-transform: uppercase;
align-items: center;
}
.site-navigation a {
text-decoration: none;
}
.site-navigation a:hover {
text-decoration: underline;
}
.site-navigation ul.pages-list {
display: flex;
justify-content: space-between;
@ -270,6 +269,7 @@ section.faq .faq-list .faq--item .answer {
display: block;
}
section.faq .faq-list .faq--item summary {
cursor: pointer;
font-weight: 600;
list-style-type: "+";
}