mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-04-14 23:32:21 -06:00
15 lines
178 B
CSS
15 lines
178 B
CSS
a {
|
|
transition: transform 1s;
|
|
transform: rotateX(45deg)
|
|
}
|
|
|
|
b {
|
|
transform: translateX(45deg)
|
|
}
|
|
|
|
@keyframes anim {
|
|
from {
|
|
transform: rotate(90deg);
|
|
}
|
|
}
|