mirror of
https://git.ari.lt/ari.lt/ari.lt.git
synced 2025-02-04 17:49:24 +01:00
8dc1a5378e
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
69 lines
1.1 KiB
CSS
69 lines
1.1 KiB
CSS
*,
|
|
::after,
|
|
::before {
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
|
|
scroll-behavior: smooth;
|
|
color-scheme: dark;
|
|
}
|
|
|
|
body {
|
|
-ms-overflow-style: none;
|
|
scrollbar-width: none;
|
|
}
|
|
|
|
body::-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;
|
|
}
|
|
}
|