i-eat.rocks/site/apps/standard.css

61 lines
874 B
CSS
Raw Normal View History

@font-face {
font-family: "PC";
src: url("/images/ui/joystix monospace.otf");
font-smooth: never;
}
* {
font-family: "PC", monospace;
}
button, button:hover {
border: outset white 4px;
background-color: rgb(219, 219, 219);
color:black;
2024-08-16 20:45:56 +00:00
border-radius: 0;
text-align: center;
margin:2px;
box-shadow: 0px 0px 2px rgba(0,0,0,0.25);
}
button:active {
border: inset white 4px;
background-color: lightgray;
}
2024-08-16 05:45:22 +00:00
input {
2024-08-16 20:45:56 +00:00
border-radius: 0;
2024-08-16 05:45:22 +00:00
border: inset white 4px;
background-color: #dbdbdb;
}
*:focus, *:active {
outline: none;
2024-08-17 02:40:00 +00:00
}
h1 {
text-align: center;
}
@keyframes hue {
0% {
filter: hue-rotate(0deg);
}
100% {
filter: hue-rotate(360deg);
}
}
.rainbow {
color:red;
animation: hue infinite 2s linear;
}
a {
color:purple;
text-decoration: underline;
2024-08-16 05:45:22 +00:00
}