diff options
Diffstat (limited to 'frontend/src/components/pages/home.css')
| -rw-r--r-- | frontend/src/components/pages/home.css | 92 |
1 files changed, 0 insertions, 92 deletions
diff --git a/frontend/src/components/pages/home.css b/frontend/src/components/pages/home.css deleted file mode 100644 index e5a8eab..0000000 --- a/frontend/src/components/pages/home.css +++ /dev/null | |||
| @@ -1,92 +0,0 @@ | |||
| 1 | * { | ||
| 2 | scrollbar-width: thin; | ||
| 3 | } | ||
| 4 | |||
| 5 | .homepage-panel { | ||
| 6 | background-color: #202232; | ||
| 7 | margin: 10px 10px; | ||
| 8 | padding: 10px; | ||
| 9 | border-radius: 24px; | ||
| 10 | overflow: hidden; | ||
| 11 | flex: 1 1 100%; | ||
| 12 | align-items: stretch; | ||
| 13 | width: 100%; | ||
| 14 | } | ||
| 15 | |||
| 16 | .homepage-panel-title-div { | ||
| 17 | background-color: #2B2E46; | ||
| 18 | width: fit-content; | ||
| 19 | padding: 5px 18px; | ||
| 20 | border-radius: 200px; | ||
| 21 | font-family: BarlowSemiCondensed-SemiBold; | ||
| 22 | font-size: 32px; | ||
| 23 | margin-bottom: 10px; | ||
| 24 | } | ||
| 25 | |||
| 26 | .stats-div { | ||
| 27 | background-color: #2B2E46; | ||
| 28 | border-radius: 24px; | ||
| 29 | text-align: center; | ||
| 30 | display: grid; | ||
| 31 | padding: 10px 0px; | ||
| 32 | width: 100%; | ||
| 33 | } | ||
| 34 | |||
| 35 | .stats-div span { | ||
| 36 | font-family: BarlowSemiCondensed-Regular; | ||
| 37 | font-size: 18px; | ||
| 38 | } | ||
| 39 | |||
| 40 | .stats-div span>b { | ||
| 41 | font-family: BarlowSemiCondensed-SemiBold; | ||
| 42 | font-size: 42px; | ||
| 43 | } | ||
| 44 | |||
| 45 | .record-title div { | ||
| 46 | --padding: 20px; | ||
| 47 | width: calc(100% - calc(var(--padding * 2))); | ||
| 48 | height: 32px; | ||
| 49 | border-radius: 200px; | ||
| 50 | font-size: 18px; | ||
| 51 | display: grid; | ||
| 52 | grid-template-columns: calc(20% - 3.6px) calc(25% - 4.5px) calc(15% - 2.7px) calc(15% - 2.7px) calc(25% - 4.5px); | ||
| 53 | text-align: center; | ||
| 54 | padding: 0px var(--padding); | ||
| 55 | vertical-align: middle; | ||
| 56 | align-items: center; | ||
| 57 | font-family: BarlowSemiCondensed-SemiBold; | ||
| 58 | } | ||
| 59 | |||
| 60 | .record-title::after { | ||
| 61 | content: ""; | ||
| 62 | display: flex; | ||
| 63 | width: 100%; | ||
| 64 | height: 3px; | ||
| 65 | background-color: #2B2E46; | ||
| 66 | margin-bottom: 5px; | ||
| 67 | } | ||
| 68 | |||
| 69 | .recommended-map-img { | ||
| 70 | width: 250px; | ||
| 71 | border-radius: 19px; | ||
| 72 | margin-bottom: 0; | ||
| 73 | /* border: 7px solid #2B2E46; */ | ||
| 74 | background-size: cover; | ||
| 75 | background-position-x: 50%; | ||
| 76 | } | ||
| 77 | |||
| 78 | .difficulty-bar-home { | ||
| 79 | width: 100%; | ||
| 80 | display: grid; | ||
| 81 | grid-template-columns: 20% 20% 20% 20% 20%; | ||
| 82 | align-items: center; | ||
| 83 | margin: 0px; | ||
| 84 | margin-top: 7px; | ||
| 85 | } | ||
| 86 | |||
| 87 | .difficulty-point { | ||
| 88 | background: #2B2E46; | ||
| 89 | height: 4px; | ||
| 90 | margin: 5px; | ||
| 91 | border-radius: 10px; | ||
| 92 | } | ||