You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
451 B
SCSS
27 lines
451 B
SCSS
.file {
|
|
position: relative;
|
|
display: inline-block;
|
|
background: #1289ff;
|
|
border-color: #1289ff;
|
|
color: #ffffff;
|
|
border-radius: 4px;
|
|
padding: 4px 12px;
|
|
overflow: hidden;
|
|
text-decoration: none;
|
|
text-indent: 0;
|
|
line-height: 20px;
|
|
}
|
|
.file input {
|
|
position: absolute;
|
|
font-size: 100px;
|
|
right: 0;
|
|
top: 0;
|
|
opacity: 0;
|
|
}
|
|
.file:hover {
|
|
background: #1289ff;
|
|
border-color: #1289ff;
|
|
color: #ffffff;
|
|
text-decoration: none;
|
|
}
|