diff options
| author | LynithDev <61880709+LynithDev@users.noreply.github.com> | 2023-12-28 13:06:11 +0100 |
|---|---|---|
| committer | LynithDev <61880709+LynithDev@users.noreply.github.com> | 2023-12-28 13:06:11 +0100 |
| commit | 98f4ee1dc2f505b0caa9c08b05935b78cc206007 (patch) | |
| tree | 3278d3efd2308044e9a4ef5113d11c98d2d99056 /apps/website/src/styles | |
| parent | 092ad3a326145c17eb0a6967e284cc03d57c1851 (diff) | |
| download | Nexus-98f4ee1dc2f505b0caa9c08b05935b78cc206007.tar.gz Nexus-98f4ee1dc2f505b0caa9c08b05935b78cc206007.tar.bz2 Nexus-98f4ee1dc2f505b0caa9c08b05935b78cc206007.zip | |
Fine tuned view transition
Diffstat (limited to 'apps/website/src/styles')
| -rw-r--r-- | apps/website/src/styles/global.css | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/apps/website/src/styles/global.css b/apps/website/src/styles/global.css index f98d574..a240f83 100644 --- a/apps/website/src/styles/global.css +++ b/apps/website/src/styles/global.css @@ -32,6 +32,27 @@ } } +/* Transition */ +@keyframes fadeIn { + from { + opacity: 0; + } + + to { + opacity: 1; + } +} + +@keyframes fadeOut { + from { + opacity: 1; + } + + to { + opacity: 0; + } +} + /* Codeblocks */ .astro-code { padding: 10px; |
