mirror of
https://git.ari.lt/ari.lt/ari.lt.git
synced 2025-02-05 01:59:25 +01:00
18 lines
237 B
CSS
18 lines
237 B
CSS
|
* {
|
||
|
box-sizing: border-box;
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
font-family: monospace;
|
||
|
color: #ffffff;
|
||
|
}
|
||
|
|
||
|
html, body {
|
||
|
background-color: #070707;
|
||
|
margin-bottom: 2em;
|
||
|
}
|
||
|
|
||
|
.iframe {
|
||
|
width: 50%;
|
||
|
min-width: 300px;
|
||
|
max-width: 1000px;
|
||
|
}
|