mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-11-23 09:45:46 +03:00
Fun stuff
This commit is contained in:
parent
e83d128f62
commit
7785e29f0d
1 changed files with 12 additions and 0 deletions
12
src/app.css
12
src/app.css
|
@ -918,6 +918,18 @@ meter.donut:is(.danger, .explode):after {
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
gap: 4px;
|
gap: 4px;
|
||||||
}
|
}
|
||||||
|
/* I'm just feeling bored, so having fun here */
|
||||||
|
@media (hover: hover) {
|
||||||
|
.avatars-stack > * {
|
||||||
|
transition: transform 0.3s ease-in-out;
|
||||||
|
}
|
||||||
|
.avatars-stack:hover > *:nth-of-type(odd) {
|
||||||
|
transform: rotate(15deg);
|
||||||
|
}
|
||||||
|
.avatars-stack:hover > *:nth-of-type(even) {
|
||||||
|
transform: rotate(-15deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.deck-container {
|
.deck-container {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
Loading…
Reference in a new issue