ari.lt/content/styles/generic/main.css

29 lines
482 B
CSS
Raw Normal View History

:root {
color-scheme: dark; }
2021-09-05 02:21:11 +03:00
* {
box-sizing: border-box;
padding: 0;
margin: 0;
font-family: monospace;
color: #ffffff;
2021-11-01 20:05:35 +02:00
-ms-overflow-style: none;
/* for Internet Explorer, Edge */
scrollbar-width: none;
/* for Firefox */
overflow-y: scroll; }
2021-11-01 20:05:35 +02:00
::-webkit-scrollbar {
display: none;
/* for Chrome, Safari, and Opera */ }
2021-09-05 02:21:11 +03:00
html,
body {
2021-09-05 02:21:11 +03:00
background-color: #070707;
margin-bottom: 2em; }
2021-09-05 02:21:11 +03:00
.iframe {
width: 50%;
min-width: 300px;
max-width: 1000px; }