10
2
Fork 0
has-writeup/blahaj.css

43 lines
617 B
CSS
Raw Normal View History

2020-06-04 00:53:43 +00:00
html, body {
margin: 0;
padding: 0;
}
2020-06-15 06:26:42 +00:00
body {
background: #223;
color: #dcc;
display: flex;
flex-direction: row;
}
2020-06-04 00:53:43 +00:00
main {
2020-06-15 06:33:31 +00:00
width: 1000px;
2020-06-04 00:53:43 +00:00
margin-left: auto;
margin-right: auto;
2020-06-15 06:26:42 +00:00
background: #334;
padding: 1rem;
2020-06-15 06:33:31 +00:00
box-sizing: border-box;
}
@media only screen and (max-width: 1400px) {
body { flex-direction: column; }
main { width: 100%; }
2020-06-04 00:53:43 +00:00
}
img {
max-width: 100%;
}
2020-06-15 06:26:42 +00:00
a {
color: #fff;
text-decoration: underline;
}
pre {
color: #000;
background: #fff;
padding: 0.5rem;
border-radius: 0.5rem;
filter: invert(); /** lazy hack **/
}