aboutsummaryrefslogtreecommitdiff
path: root/pages/styles
diff options
context:
space:
mode:
authorFactiven <[email protected]>2023-04-14 00:14:12 +0700
committerFactiven <[email protected]>2023-04-14 00:14:12 +0700
commit70fda74d27d9b55c9030932794daa25c1e6cf50d (patch)
tree0c1f639be4e8ec1b960ba642b8e99c1485e83b1a /pages/styles
parentUpdate 5th (diff)
downloadmoopa-70fda74d27d9b55c9030932794daa25c1e6cf50d.tar.xz
moopa-70fda74d27d9b55c9030932794daa25c1e6cf50d.zip
Update 6th
Diffstat (limited to 'pages/styles')
-rw-r--r--pages/styles/globals.css128
1 files changed, 0 insertions, 128 deletions
diff --git a/pages/styles/globals.css b/pages/styles/globals.css
deleted file mode 100644
index f4be0b0..0000000
--- a/pages/styles/globals.css
+++ /dev/null
@@ -1,128 +0,0 @@
-@import url("https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&family=Outfit:wght@100;200;300;400;500;600;700;800;900&family=Ramabhadra&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
-@tailwind base;
-@tailwind components;
-@tailwind utilities;
-
-@media (max-width: 768px) {
- svg {
- height: 90%;
- }
-}
-
-* {
- -webkit-tap-highlight-color: transparent;
-}
-
-body {
- @apply bg-[#131313] scrollbar-hide;
-}
-
-@layer components {
- .flex-center {
- @apply flex justify-center items-center;
- }
-}
-
-.tooltiptext {
- visibility: hidden;
- opacity: 0;
- min-width: fit-content;
-}
-
-.tooltip:hover .tooltiptext {
- visibility: visible;
- opacity: 1;
-}
-
-.nav-hidden {
- top: -100%;
-}
-
-a {
- -webkit-tap-highlight-color: transparent;
-}
-
-button {
- -webkit-tap-highlight-color: transparent;
-}
-
-.chapter-button {
- @apply h-auto w-20 scale-100 rounded-full border-[1px] text-center md:w-40 md:scale-90 md:rounded-3xl md:border-2 md:p-3 md:text-2xl;
-}
-
-.search-box {
- position: absolute;
- display: flex;
- top: 50%;
- left: 50%;
- transform: translate(-100%, 0%);
- background: #2f3640;
- height: 40px;
- border-radius: 40px;
- @apply h-12;
-}
-
-.search-box:hover > .search-text {
- width: 240px;
- padding: 0 19px;
- @apply py-2;
-}
-
-.search-box:hover > .search-btn {
- background: white;
- color: black;
-}
-
-.search-btn {
- color: #e84118;
- float: right;
- width: 40px;
- height: 40px;
- border-radius: 50%;
- background: #2f3640;
- display: flex;
- justify-content: center;
- align-items: center;
- transition: 0.4s;
- cursor: pointer;
- text-decoration: none;
- @apply h-12 w-12;
-}
-.search-btn > i {
- fontsize: 30px;
-}
-
-.search-text {
- border: none;
- background: none;
- outline: none;
- float: left;
- padding: 0;
- color: white;
- font-size: 16px;
- font-weight: normal;
- transition: 0.4s;
- line-height: 30px;
- width: 0px;
-
- /* width: 250px; */
-}
-
-.title-overflow {
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- white-space: normal;
-}
-
-.banner {
- transform: translateY(-50%);
- position: absolute;
- top: 50%;
- left: 0;
- width: 100%;
- height: 100%;
- z-index: -1;
-}