12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- @charset "utf-8";
- .file-upload.type-none {
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- cursor: pointer;
- input {
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- opacity: 0;
- width: 100%;
- height: 100%;
- position: absolute;
- cursor: pointer;
- z-index: 1;
- }
- i {
- font-size: 20px;
- line-height: 100px;
- }
- }
- .file-upload.type-image {
- border: 1px dashed #d9d9d9;
- width: 100px;
- height: 100px;
- position: relative;
- text-align: center;
- display: inline-block;
- cursor: pointer;
- input {
- height: 100%;
- width: 100%;
- opacity: 0;
- position: absolute;
- cursor: pointer;
- z-index: 1;
- }
- i {
- font-size: 20px;
- line-height: 100px;
- }
- }
- .file-upload.type-logo {
- position: relative;
- cursor: pointer;
- input {
- position: absolute;
- width: 150px;
- height: 50px;
- opacity: 0;
- z-index: 1;
- cursor: pointer;
- }
- }
- .file-upload.type-file {
- position: relative;
- text-align: center;
- display: inline-block;
- cursor: pointer;
- input {
- height: 100%;
- width: 100%;
- opacity: 0;
- position: absolute;
- cursor: pointer;
- z-index: 1;
- }
- }
|