canihazusername/website/main.css

35 lines
583 B
CSS
Raw Normal View History

2020-02-05 22:48:14 +01:00
* {
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 {
2020-02-06 17:09:21 +01:00
width: 100%;
2020-02-05 22:48:14 +01:00
max-width: 35em;
margin: auto;
}
pre {
text-align: left;
padding: 1em .5em;
border-radius: 1.5em;
}
h2 span{
color: #3273dc
}