31 lines
493 B
CSS
31 lines
493 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
html,
|
|
body {
|
|
background-color: #101010;
|
|
color: #FEFEFE;
|
|
font-family: Helvetica, Arial, Sans-Serif;
|
|
padding: 0;
|
|
margin: 0;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
a:not([link\:active]):hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
a[link\:active] {
|
|
pointer-events: none;
|
|
cursor: default;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.container__content {
|
|
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
|
|
}
|
|
|
|
.loading > * {
|
|
display: none;
|
|
} |