61 lines
1021 B
CSS
61 lines
1021 B
CSS
|
@tailwind base;
|
||
|
@tailwind components;
|
||
|
@tailwind utilities;
|
||
|
|
||
|
:root {
|
||
|
--foreground-rgb: 0, 0, 0;
|
||
|
--background-start-rgb: 214, 219, 220;
|
||
|
--background-end-rgb: 255, 255, 255;
|
||
|
}
|
||
|
|
||
|
@media (prefers-color-scheme: dark) {
|
||
|
:root {
|
||
|
--foreground-rgb: 255, 255, 255;
|
||
|
--background-start-rgb: 0, 0, 0;
|
||
|
--background-end-rgb: 0, 0, 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
color: rgb(var(--foreground-rgb));
|
||
|
background: linear-gradient(
|
||
|
to bottom,
|
||
|
transparent,
|
||
|
rgb(var(--background-end-rgb))
|
||
|
)
|
||
|
rgb(var(--background-start-rgb));
|
||
|
}
|
||
|
|
||
|
@layer utilities {
|
||
|
.text-balance {
|
||
|
text-wrap: balance;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.modal-overlay {
|
||
|
position: fixed;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
background-color: rgba(0, 0, 0, 0.5);
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
z-index: 9999;
|
||
|
}
|
||
|
|
||
|
.modal {
|
||
|
background-color: #fff;
|
||
|
padding: 20px;
|
||
|
border-radius: 5px;
|
||
|
position: relative;
|
||
|
width: 100%;
|
||
|
max-width: 800px;
|
||
|
}
|
||
|
|
||
|
.modal iframe {
|
||
|
width: 100%;
|
||
|
height: 600px;
|
||
|
border: none;
|
||
|
}
|