1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- @charset "utf-8";
- .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;
- }
- }
|