2023-10-06 18:36:58 +03:00
|
|
|
@import url(/content/fonts/Hack.min.css);
|
2022-03-12 23:44:22 +02:00
|
|
|
|
2022-03-11 13:35:37 +02:00
|
|
|
:root {
|
2023-10-29 00:03:22 +03:00
|
|
|
--s: 6px;
|
2022-03-11 13:35:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
*,
|
|
|
|
*::before,
|
|
|
|
*::after {
|
2022-03-12 23:44:22 +02:00
|
|
|
font-family: Hack, hack, monospace;
|
2022-04-24 15:02:17 +03:00
|
|
|
|
2022-03-11 13:35:37 +02:00
|
|
|
scrollbar-width: none;
|
2023-10-29 00:03:22 +03:00
|
|
|
scrollbar-color: var(--cb) transparent;
|
2022-04-24 15:02:17 +03:00
|
|
|
scroll-behavior: smooth;
|
2022-10-13 19:06:04 +03:00
|
|
|
|
2022-12-15 01:00:33 +02:00
|
|
|
outline-offset: 3px;
|
2022-03-11 13:35:37 +02:00
|
|
|
}
|
|
|
|
|
2022-09-20 02:18:54 +03:00
|
|
|
::-webkit-scrollbar,
|
|
|
|
::-webkit-scrollbar-thumb {
|
2023-10-29 00:03:22 +03:00
|
|
|
height: var(--s);
|
2022-09-20 02:18:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
2023-10-29 00:03:22 +03:00
|
|
|
background-color: var(--cb);
|
2022-09-20 02:18:54 +03:00
|
|
|
}
|
|
|
|
|
2022-09-20 02:23:20 +03:00
|
|
|
html::-webkit-scrollbar,
|
|
|
|
body::-webkit-scrollbar {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
2022-10-13 19:06:04 +03:00
|
|
|
a:focus,
|
|
|
|
a:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
2023-08-29 10:27:14 +03:00
|
|
|
*[h]:hover > a,
|
|
|
|
*[h]:focus > a {
|
2023-02-09 00:45:57 +02:00
|
|
|
opacity: 0.6;
|
|
|
|
}
|
|
|
|
|
2023-08-29 10:27:14 +03:00
|
|
|
*[h] > a:hover,
|
|
|
|
*[h] > a:focus {
|
2022-10-31 16:50:02 +02:00
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2022-10-31 19:27:15 +02:00
|
|
|
@media only screen and (max-width: 1200px) {
|
2023-08-29 10:27:14 +03:00
|
|
|
*[h] > a,
|
2023-10-29 00:03:22 +03:00
|
|
|
*[h] > a:hover,
|
|
|
|
*[h] > a:focus {
|
|
|
|
opacity: 1 !important;
|
2022-10-31 16:50:02 +02:00
|
|
|
}
|
2022-10-31 03:28:33 +02:00
|
|
|
}
|
|
|
|
|
2022-03-12 22:48:33 +02:00
|
|
|
@media (prefers-reduced-motion: reduce) {
|
|
|
|
*,
|
|
|
|
*::before,
|
|
|
|
*::after {
|
2022-04-24 15:02:17 +03:00
|
|
|
-webkit-animation-duration: 0.01ms !important;
|
2022-03-12 22:48:33 +02:00
|
|
|
animation-duration: 0.01ms !important;
|
2022-04-24 15:02:17 +03:00
|
|
|
|
|
|
|
-webkit-animation-iteration-count: 1 !important;
|
2022-03-12 22:48:33 +02:00
|
|
|
animation-iteration-count: 1 !important;
|
2022-04-24 15:02:17 +03:00
|
|
|
|
|
|
|
-webkit-transition-duration: 0.01ms !important;
|
|
|
|
-o-transition-duration: 0.01ms !important;
|
2022-03-12 22:48:33 +02:00
|
|
|
transition-duration: 0.01ms !important;
|
2022-04-24 15:02:17 +03:00
|
|
|
|
2022-03-12 22:48:33 +02:00
|
|
|
scroll-behavior: auto !important;
|
|
|
|
}
|
|
|
|
}
|
2022-08-30 03:57:55 +03:00
|
|
|
|
|
|
|
@media (prefers-contrast: more) {
|
|
|
|
:root {
|
2023-10-08 07:37:55 +03:00
|
|
|
--b: #000;
|
|
|
|
--f: #fff;
|
2022-08-30 03:57:55 +03:00
|
|
|
|
2023-10-29 00:03:22 +03:00
|
|
|
--cf: #f0f0f0;
|
|
|
|
--cb: #090909;
|
2022-10-20 18:47:07 +03:00
|
|
|
|
2023-10-29 00:03:22 +03:00
|
|
|
--qf: #ededed;
|
|
|
|
--qb: #868e91;
|
2022-11-04 17:03:55 +02:00
|
|
|
|
2023-10-29 00:03:22 +03:00
|
|
|
--af: #a9c4d1;
|
2022-09-20 02:18:54 +03:00
|
|
|
|
2023-10-29 00:03:22 +03:00
|
|
|
--bw: 4px;
|
2022-10-20 18:47:07 +03:00
|
|
|
|
2023-10-29 00:03:22 +03:00
|
|
|
--s: initial;
|
2022-08-30 03:57:55 +03:00
|
|
|
}
|
|
|
|
|
2023-08-29 10:27:14 +03:00
|
|
|
a {
|
2023-10-06 18:36:58 +03:00
|
|
|
opacity: 1 !important;
|
2022-10-31 19:08:59 +02:00
|
|
|
}
|
2022-08-30 03:57:55 +03:00
|
|
|
}
|