Gem2Browser/style.css

36 lines
700 B
CSS
Raw Normal View History

2025-01-13 15:58:39 -08:00
/* SweeSS-like stylesheet for Gem2Browser */
html {
background-color: #242424;
color: white;
height: 100%;
font-family: sans-serif;
}
a {
color: deepskyblue;
text-decoration:underline;
text-decoration-style: dotted;
}
2025-01-13 16:21:37 -08:00
.go {
2025-01-13 15:58:39 -08:00
border: none;
border-radius: 5px;
background: deepskyblue;
transition: filter 0.1s;
transition-timing-function: ease-in;
padding: 10px;
display: inline-block;
cursor: pointer;
}
2025-01-13 16:21:37 -08:00
.go:hover {
2025-01-13 15:58:39 -08:00
filter: brightness(150%);
}
2025-01-13 16:21:37 -08:00
.go:acive {
2025-01-13 15:58:39 -08:00
filter: brightness(75%);
2025-01-13 16:21:37 -08:00
}
.input {
background-color: #0c0c0c;
border: solid;
color: white;
border-width: 2px;
border-color: white;
border-radius: 10px;
2025-01-13 15:58:39 -08:00
}