From a65d6d9127c3fa7f6a8ecaec5d1ffd1f47c2bc98 Mon Sep 17 00:00:00 2001 From: Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> Date: Tue, 3 Sep 2024 00:08:53 +0300 Subject: refactor: port to typescript --- frontend/src/components/pages/home.css | 92 ---------------------------------- 1 file changed, 92 deletions(-) delete mode 100644 frontend/src/components/pages/home.css (limited to 'frontend/src/components/pages/home.css') 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 @@ -* { - scrollbar-width: thin; -} - -.homepage-panel { - background-color: #202232; - margin: 10px 10px; - padding: 10px; - border-radius: 24px; - overflow: hidden; - flex: 1 1 100%; - align-items: stretch; - width: 100%; -} - -.homepage-panel-title-div { - background-color: #2B2E46; - width: fit-content; - padding: 5px 18px; - border-radius: 200px; - font-family: BarlowSemiCondensed-SemiBold; - font-size: 32px; - margin-bottom: 10px; -} - -.stats-div { - background-color: #2B2E46; - border-radius: 24px; - text-align: center; - display: grid; - padding: 10px 0px; - width: 100%; -} - -.stats-div span { - font-family: BarlowSemiCondensed-Regular; - font-size: 18px; -} - -.stats-div span>b { - font-family: BarlowSemiCondensed-SemiBold; - font-size: 42px; -} - -.record-title div { - --padding: 20px; - width: calc(100% - calc(var(--padding * 2))); - height: 32px; - border-radius: 200px; - font-size: 18px; - display: grid; - grid-template-columns: calc(20% - 3.6px) calc(25% - 4.5px) calc(15% - 2.7px) calc(15% - 2.7px) calc(25% - 4.5px); - text-align: center; - padding: 0px var(--padding); - vertical-align: middle; - align-items: center; - font-family: BarlowSemiCondensed-SemiBold; -} - -.record-title::after { - content: ""; - display: flex; - width: 100%; - height: 3px; - background-color: #2B2E46; - margin-bottom: 5px; -} - -.recommended-map-img { - width: 250px; - border-radius: 19px; - margin-bottom: 0; - /* border: 7px solid #2B2E46; */ - background-size: cover; - background-position-x: 50%; -} - -.difficulty-bar-home { - width: 100%; - display: grid; - grid-template-columns: 20% 20% 20% 20% 20%; - align-items: center; - margin: 0px; - margin-top: 7px; -} - -.difficulty-point { - background: #2B2E46; - height: 4px; - margin: 5px; - border-radius: 10px; -} -- cgit v1.2.3