intermodal/www/404.css
Casey Rodarmor 87687f4dec
Add custom 404 page to site
type: documentation
2020-04-18 23:43:24 -07:00

31 lines
454 B
CSS

* {
margin: 0;
padding: 0;
}
html {
background-color: black;
color: white;
font-family: sans-serif;
text-align: center;
font-size: 60vmin;
width: 100%;
height: 100%;
}
body {
min-height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
a {
color: white;
text-decoration: none;
}
a:hover {
text-shadow: 0 0 100px #fff;
}