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

@ -44,6 +44,12 @@ h2 {
padding: .75em 1.5em;
text-decoration: none;
font-size: 16px;
transition: all 0.25s ease;
&:hover {
text-decoration: none;
transform: scale(1.1);
}
&--solid {
background-color: var(--foreground-text);
@ -59,13 +65,6 @@ h2 {
font-weight: 700;
text-transform: uppercase;
align-items: center;
a {
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
ul.pages-list {
display: flex;
@ -287,6 +286,7 @@ section.faq {
display: block;
}
summary {
cursor: pointer;
font-weight: 600;
list-style-type: '+';
span { margin-left: 16px; }