52 lines
No EOL
1.1 KiB
CSS
52 lines
No EOL
1.1 KiB
CSS
/* 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;
|
|
}
|
|
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%);
|
|
}
|
|
.greentext {
|
|
color: #00ae00;
|
|
}
|
|
.go {
|
|
border: none;
|
|
border-radius: 5px;
|
|
background: deepskyblue;
|
|
transition: filter 0.1s;
|
|
transition-timing-function: ease-in;
|
|
padding: 10px;
|
|
display: inline-block;
|
|
cursor: pointer;
|
|
}
|
|
.go:hover {
|
|
filter: brightness(150%);
|
|
}
|
|
.go:acive {
|
|
filter: brightness(75%);
|
|
}
|
|
.input {
|
|
background-color: #0c0c0c;
|
|
border: none;
|
|
color: white;
|
|
} |