movie-web/src/setup/index.css

88 lines
1.4 KiB
CSS
Raw Normal View History

@tailwind base;
@tailwind components;
@tailwind utilities;
2022-02-10 23:45:17 +01:00
html,
body {
2023-02-27 08:19:38 +01:00
@apply bg-denim-100 font-open-sans text-denim-700 overflow-x-hidden;
2023-01-23 23:01:08 +01:00
min-height: 100vh;
min-height: 100dvh;
2022-02-10 23:45:17 +01:00
}
2023-02-27 08:19:38 +01:00
html[data-full],
html[data-full] body {
2023-01-23 23:51:40 +01:00
overscroll-behavior-y: none;
}
body[data-no-scroll] {
overflow-y: hidden;
height: 100vh;
}
#root {
2023-01-07 21:36:18 +01:00
padding: 0.05px;
min-height: 100vh;
2023-01-23 23:01:08 +01:00
min-height: 100dvh;
width: 100%;
}
2023-01-08 22:29:38 +01:00
body[data-no-select] {
user-select: none;
}
.roll {
animation: roll 1s;
}
@keyframes roll {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.line-clamp {
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 1;
2023-02-27 08:19:38 +01:00
-webkit-box-orient: vertical;
overflow: hidden;
}
.google-cast-button:not(.casting) google-cast-launcher {
@apply brightness-[500];
}
2023-03-15 15:48:50 +01:00
input[type=range] {
@apply bg-[#1C161B];
height: 0.25rem;
-webkit-appearance: none;
appearance: none;
width: 100%;
outline: none;
line-height: normal;
border-radius: 5px;
}
input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
height: 1rem;
background: white;
aspect-ratio: 1;
cursor: pointer;
border-radius: 50%;
margin-bottom: 1rem;
}
input[type=range]::-moz-range-thumb {
aspect-ratio: 1;
height: 1rem;
background: white;
aspect-ratio: 1;
cursor: pointer;
border-radius: 50%;
margin-bottom: 1rem;
}