etc.ari-web.xyz/content/styles/clean/index.css
Ari Archer 05ae9535e6
Add peerjs example, make all pages dark
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
2022-10-10 20:52:57 +03:00

75 lines
1.3 KiB
CSS

*,
::after,
::before {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
scroll-behavior: smooth;
color-scheme: dark;
background-color: black;
color: whitesmoke;
}
*:not(textarea),
*:not(textarea)::after,
*:not(textarea)::before {
-ms-overflow-style: none;
scrollbar-width: none;
}
*:not(textarea)::-webkit-scrollbar,
*:not(textarea)::after::-webkit-scrollbar,
*:not(textarea)::before::-webkit-scrollbar {
display: none;
}
ol[role="list"],
ul[role="list"] {
list-style: none;
}
body {
min-height: 100vh;
text-rendering: optimizeSpeed;
line-height: 1.5;
}
img,
picture {
max-width: 100%;
display: block;
}
button,
input,
select,
textarea {
font: inherit;
}
label {
cursor: pointer;
}
@media (prefers-reduced-motion: reduce) {
*,
::after,
::before {
scroll-behavior: auto;
-webkit-animation-duration: 0s !important;
animation-duration: 0s !important;
-webkit-animation-iteration-count: 1 !important;
animation-iteration-count: 1 !important;
-webkit-transition-duration: 0s !important;
-o-transition-duration: 0s !important;
transition-duration: 0s !important;
scroll-behavior: auto !important;
}
}