mirror of
https://git.ari.lt/ari.lt/ari.lt.git
synced 2025-02-04 17:49:24 +01:00
29 lines
No EOL
475 B
CSS
29 lines
No EOL
475 B
CSS
* {
|
|
box-sizing: border-box;
|
|
padding: 0;
|
|
margin: 0;
|
|
font-family: monospace;
|
|
color: #ffffff;
|
|
scroll-behavior: smooth;
|
|
-ms-overflow-style: none;
|
|
/* for Internet Explorer, Edge */
|
|
scrollbar-width: none;
|
|
/* for Firefox */
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
display: none;
|
|
/* for Chrome, Safari, and Opera */
|
|
}
|
|
|
|
html, body {
|
|
background-color: #070707;
|
|
margin-bottom: 2em;
|
|
}
|
|
|
|
.iframe {
|
|
width: 50%;
|
|
min-width: 300px;
|
|
max-width: 1000px;
|
|
} |