animate nav bar items on hover
This commit is contained in:
parent
9520dbb3e7
commit
42a7b0e9b5
|
@ -454,29 +454,33 @@ hr {
|
|||
}
|
||||
|
||||
#home-link:hover {
|
||||
background: none;
|
||||
text-decoration: none;
|
||||
background: none;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.header-page-links li:before {
|
||||
content: ''
|
||||
content: ''
|
||||
}
|
||||
|
||||
.header-page-links a {
|
||||
margin: 0px 4px;
|
||||
font-size: 1.1rem;
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
margin: 0px 4px;
|
||||
font-size: 1.1rem;
|
||||
text-decoration: none;
|
||||
transition: transform 0.5s ease;
|
||||
}
|
||||
|
||||
.header-page-links a:hover {
|
||||
background-color: transparent;
|
||||
color: lightgrey;
|
||||
transform: translateY(-2px);
|
||||
background-color: transparent;
|
||||
color: var(--link-color);
|
||||
}
|
||||
|
||||
.left-menu {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
filter: brightness(60%);
|
||||
filter: brightness(80%);
|
||||
transition: transform 0.5s ease;
|
||||
}
|
||||
|
||||
.left-menu:hover {
|
||||
|
@ -849,12 +853,11 @@ textarea {
|
|||
font-size: 16px;
|
||||
caret-color: white !important;
|
||||
color: white !important;
|
||||
height: 60px !important;
|
||||
background: var(--background-color) !important;
|
||||
width: 100%;
|
||||
padding: 8px;
|
||||
margin-bottom: 10px;
|
||||
height: 40px;
|
||||
height: 130px !important;
|
||||
background: var(--background-color) !important;
|
||||
width: 100%;
|
||||
padding: 8px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.form-textarea {
|
||||
|
|
Loading…
Reference in New Issue