chromatic-lattice/src/main.css

54 lines
653 B
CSS
Raw Normal View History

2021-06-12 04:38:16 +00:00
* {
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;
}
button {
color: black;
}
2021-06-12 04:38:16 +00:00
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;
}