forked from YandolsZX/IcarusImeji
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
580 B
33 lines
580 B
/**
|
|
Theme Name: I.C.A.R.U.S. Imeji Uploader - Additional
|
|
Theme URL: http://zxicar.us/
|
|
Version: 0.4
|
|
Author: Yandols Z'eon X
|
|
*/
|
|
|
|
.inputfile {
|
|
width: 0.1px;
|
|
height: 0.1px;
|
|
opacity: 0;
|
|
overflow: hidden;
|
|
position: absolute;
|
|
z-index: -1;
|
|
}
|
|
|
|
.inputfile + label {
|
|
font-size: 1.25em;
|
|
font-weight: 700;
|
|
color: white;
|
|
background-color: black;
|
|
display: inline-block;
|
|
cursor: pointer; /* "hand" cursor */
|
|
outline: 1px dotted #000;
|
|
outline: -webkit-focus-ring-color auto 5px;
|
|
}
|
|
|
|
.inputfile:focus + label,
|
|
.inputfile + label:hover {
|
|
background-color: red;
|
|
}
|
|
|