Add style.css
This commit is contained in:
parent
b61f1e4c38
commit
0f0c06ef3c
1 changed files with 28 additions and 0 deletions
28
style.css
Normal file
28
style.css
Normal file
|
@ -0,0 +1,28 @@
|
|||
/* 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;
|
||||
}
|
||||
.download {
|
||||
border: none;
|
||||
border-radius: 5px;
|
||||
background: deepskyblue;
|
||||
transition: filter 0.1s;
|
||||
transition-timing-function: ease-in;
|
||||
padding: 10px;
|
||||
display: inline-block;
|
||||
cursor: pointer;
|
||||
}
|
||||
.download:hover {
|
||||
filter: brightness(150%);
|
||||
}
|
||||
.download:acive {
|
||||
filter: brightness(75%);
|
||||
}
|
Loading…
Add table
Reference in a new issue