mirror of
https://github.com/amiaopensource/ffmprovisr.git
synced 2024-11-10 07:27:23 +01:00
add cursor:pointer and adjust transition speed
This commit is contained in:
parent
cf8756ced7
commit
1e705b4914
@ -149,6 +149,7 @@ div {
|
|||||||
transition: all .5s ease-out;
|
transition: all .5s ease-out;
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
.recipe:hover {
|
.recipe:hover {
|
||||||
@ -166,7 +167,8 @@ div {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.recipe:hover:before, .recipe:focus:before, .recipe:active:before {
|
.recipe:hover:before, .recipe:focus:before, .recipe:active:before {
|
||||||
transform: scale(1.3);
|
transform: scale(1.5) translateX(0.1em);
|
||||||
|
transition: 0.5s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebar a {
|
.sidebar a {
|
||||||
@ -184,6 +186,7 @@ div {
|
|||||||
border: 1px solid black;
|
border: 1px solid black;
|
||||||
transition: all .5s ease-out;
|
transition: all .5s ease-out;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
.contents-list:hover {
|
.contents-list:hover {
|
||||||
@ -202,6 +205,7 @@ div {
|
|||||||
|
|
||||||
.contents-list:hover:before, .contents-list:focus:before, .contents-list:active:before {
|
.contents-list:hover:before, .contents-list:focus:before, .contents-list:active:before {
|
||||||
transform: scale(1.8) translateX(0.3em);
|
transform: scale(1.8) translateX(0.3em);
|
||||||
|
transition: 0.5s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.codeblock {
|
.codeblock {
|
||||||
|
Loading…
Reference in New Issue
Block a user