forked from profectus/Profectus
50 lines
626 B
CSS
50 lines
626 B
CSS
|
* {
|
||
|
transition-duration: 0.5s;
|
||
|
font-family: "Roboto Mono", monospace;
|
||
|
font-weight: bold;
|
||
|
margin: auto;
|
||
|
text-size-adjust: none;
|
||
|
}
|
||
|
|
||
|
*:focus {
|
||
|
outline: none;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
overflow: hidden;
|
||
|
min-width: 640px;
|
||
|
transition: none;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
html, body, #app {
|
||
|
min-height: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
h1, h2, h3, b, input {
|
||
|
display: inline;
|
||
|
}
|
||
|
|
||
|
a,
|
||
|
.button,
|
||
|
.link {
|
||
|
display: block;
|
||
|
color: var(--link);
|
||
|
background: none;
|
||
|
border: none;
|
||
|
cursor: pointer;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
a:hover,
|
||
|
.button:hover,
|
||
|
.link:hover {
|
||
|
text-shadow: 5px 0 10px var(--link),
|
||
|
-3px 0 12px var(--link);
|
||
|
}
|
||
|
|
||
|
ul {
|
||
|
list-style-type: none;
|
||
|
}
|