diff options
| author | Wolfboy248 <121288977+Wolfboy248@users.noreply.github.com> | 2024-07-10 21:51:25 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-10 22:51:25 +0300 |
| commit | cfac59282da55f4791d6352f15887a15e9ff6ec5 (patch) | |
| tree | bf8cea62f60f9239073a9cf82648d69d1e6b6a1c /frontend/src/App.css | |
| parent | feat: return portal counts for each cat in chapter select (#175) (diff) | |
| download | lphub-cfac59282da55f4791d6352f15887a15e9ff6ec5.tar.gz lphub-cfac59282da55f4791d6352f15887a15e9ff6ec5.tar.bz2 lphub-cfac59282da55f4791d6352f15887a15e9ff6ec5.zip | |
Games page, maplist page (#153)
Co-authored-by: Wolfboy248 <105884620+Wolfboy248@users.noreply.github.com>
Diffstat (limited to 'frontend/src/App.css')
| -rw-r--r-- | frontend/src/App.css | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/frontend/src/App.css b/frontend/src/App.css index c96f197..c43738b 100644 --- a/frontend/src/App.css +++ b/frontend/src/App.css | |||
| @@ -4,6 +4,26 @@ body { | |||
| 4 | margin: 0; | 4 | margin: 0; |
| 5 | } | 5 | } |
| 6 | 6 | ||
| 7 | .loader { | ||
| 8 | animation: loader 1.2s ease infinite; | ||
| 9 | background-size: 400% 300%; | ||
| 10 | background-image: linear-gradient(-90deg, #202232 0%, #202232 25%, #2a2c41 50%, #202232 75%, #202232 100%); | ||
| 11 | } | ||
| 12 | |||
| 13 | @keyframes loader { | ||
| 14 | 0% { | ||
| 15 | background-position: 100% 20%; | ||
| 16 | } | ||
| 17 | |||
| 18 | 50% { | ||
| 19 | background-position: 0% 50%; | ||
| 20 | } | ||
| 21 | |||
| 22 | 100% { | ||
| 23 | background-position: 0% 50%; | ||
| 24 | } | ||
| 25 | } | ||
| 26 | |||
| 7 | @font-face { | 27 | @font-face { |
| 8 | font-family: 'BarlowCondensed-Bold'; | 28 | font-family: 'BarlowCondensed-Bold'; |
| 9 | src: local('BarlowCondensed-Bold'), url(./fonts/BarlowCondensed-Bold.ttf) format('truetype'); | 29 | src: local('BarlowCondensed-Bold'), url(./fonts/BarlowCondensed-Bold.ttf) format('truetype'); |
| @@ -17,4 +37,9 @@ body { | |||
| 17 | @font-face { | 37 | @font-face { |
| 18 | font-family: 'BarlowSemiCondensed-Regular'; | 38 | font-family: 'BarlowSemiCondensed-Regular'; |
| 19 | src: local('BarlowSemiCondensed-Regular'), url(./fonts/BarlowSemiCondensed-Regular.ttf) format('truetype'); | 39 | src: local('BarlowSemiCondensed-Regular'), url(./fonts/BarlowSemiCondensed-Regular.ttf) format('truetype'); |
| 40 | } | ||
| 41 | |||
| 42 | @font-face { | ||
| 43 | font-family: 'BarlowSemiCondensed-SemiBold'; | ||
| 44 | src: local('BarlowSemiCondensed-Regular'), url(./fonts/BarlowSemiCondensed-SemiBold.ttf) format('truetype'); | ||
| 20 | } \ No newline at end of file | 45 | } \ No newline at end of file |