mirror of
https://github.com/LBRYFoundation/lbryorg.git
synced 2025-08-23 20:47:23 +00:00
feat: add hover animations to cards
This commit is contained in:
parent
190038d7df
commit
aa7a219418
1 changed files with 11 additions and 2 deletions
|
@ -131,7 +131,7 @@ nav {
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
/* /Special Branded Color Classes*/
|
/* /Special Branded Color Classes*/
|
||||||
/*Hovering Button Style*/
|
/* Hovering Button Style*/
|
||||||
.button {
|
.button {
|
||||||
background-color: #4CAF50; /* Green */
|
background-color: #4CAF50; /* Green */
|
||||||
border: none;
|
border: none;
|
||||||
|
@ -156,4 +156,13 @@ nav {
|
||||||
color: #28D4E2;
|
color: #28D4E2;
|
||||||
}
|
}
|
||||||
.button1 {border-radius: 13px;}
|
.button1 {border-radius: 13px;}
|
||||||
/*Hovering Button Style*/
|
/* /Hovering Button Style*/
|
||||||
|
|
||||||
|
/* Card animations*/
|
||||||
|
.card {
|
||||||
|
transition: transform 0.2s;
|
||||||
|
}
|
||||||
|
.card:hover {
|
||||||
|
transform: scale(1.05);
|
||||||
|
}
|
||||||
|
/* /Card animations*/
|
Loading…
Add table
Reference in a new issue