Update style.css
This commit is contained in:
parent
3897ce08cd
commit
d5a800627c
1 changed files with 16 additions and 0 deletions
16
style.css
16
style.css
|
@ -10,6 +10,22 @@ a {
|
||||||
text-decoration:underline;
|
text-decoration:underline;
|
||||||
text-decoration-style: dotted;
|
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 {
|
.greentext {
|
||||||
color: #00ae00;
|
color: #00ae00;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue