87687f4dec
type: documentation
31 lines
454 B
CSS
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;
|
|
}
|