canihazusername/website/main.css
2020-02-06 17:09:21 +01:00

35 lines
583 B
CSS

* {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
body {
width: 100vw;
height: 100vh;
}
#main {
text-align: center;
padding: 1em;
display: flex;
/* justify-content: center;
align-items: center; */
height: 100%;
width: 100%;
overflow: auto;
}
#main > div {
width: 100%;
max-width: 35em;
margin: auto;
}
pre {
text-align: left;
padding: 1em .5em;
border-radius: 1.5em;
}
h2 span{
color: #3273dc
}