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-14 20:03:34 -08:00
|
|
|
input[type="file"]::file-selector-button {
|
|
|
|
border: none;
|
|
|
|
border-radius: 5px;
|
|
|
|
background: deepskyblue;
|
|
|
|
transition: filter 0.1s;
|
|
|
|
transition-timing-function: ease-in;
|
|
|
|
padding: 10px;
|
|
|
|
display: inline-block;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
input[type="file"]::file-selector-button:hover {
|
|
|
|
filter: brightness(150%);
|
|
|
|
}
|
|
|
|
input[type="file"]::file-selector-button:active {
|
|
|
|
filter: brightness(75%);
|
|
|
|
}
|
2025-01-13 19:21:45 -08:00
|
|
|
.greentext {
|
|
|
|
color: #00ae00;
|
|
|
|
}
|
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;
|
2025-01-13 16:21:59 -08:00
|
|
|
border: none;
|
2025-01-13 16:21:37 -08:00
|
|
|
color: white;
|
2025-01-13 15:58:39 -08:00
|
|
|
}
|