mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2026-06-13 03:05:27 -04:00
3a3849e8ec
still a mess but slightly more modular. also added a real 404 page.
30 lines
363 B
SCSS
30 lines
363 B
SCSS
// 404 Styles
|
|
div.layout-404 {
|
|
padding-top: 1.5em;
|
|
padding-bottom: 1.5em;
|
|
text-align: center;
|
|
font-size: 0.9em;
|
|
|
|
img {
|
|
display: block;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
h2 {
|
|
margin: 0.75em 0 0.5em 0;
|
|
letter-spacing: -0.005em;
|
|
}
|
|
|
|
p {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
// Responsive
|
|
@mixin responsive() {
|
|
img {
|
|
height: auto;
|
|
max-width: 100%;
|
|
}
|
|
}
|