mirror of
https://github.com/khairul169/honey.git
synced 2025-04-28 23:09:32 +07:00
17 lines
222 B
CSS
17 lines
222 B
CSS
body {
|
|
transition: opacity .3s;
|
|
}
|
|
|
|
body:not(.loaded) {
|
|
opacity: 0;
|
|
transition: none;
|
|
}
|
|
|
|
body:not(.loaded) * {
|
|
transition: none !important;
|
|
}
|
|
|
|
body:not(.loaded) .page .wrapper {
|
|
transform: scale(.8) translateY(50%);
|
|
}
|