1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #dropbox {
- position: relative;
- }
-
- #dropbox > input {
- position: absolute;
- top: 0px;
- right: 0px;
- bottom: 0px;
- left: 0px;
- width: 100%;
- height: 100%;
- opacity: 0;
- }
-
- #dropbox > input:hover, #dropbox:hover {
- cursor: pointer;
- }
- #dropbox {
- padding: 15px 0px;
- border: 2px solid #ddd;
- text-align: center;
- color: #999;
- font-size: 1.3em;
- font-family: Arial, sans-serif;
- transition: background-color 0.15s;
- }
-
- #dropbox.active {
- border-color: #3a3;
- color: #777;
- background-color: #dfd;
- }
-
- .upload-progress {
- margin-bottom: 10px;
- }
-
- .upload-progress .desc {
- font-size: 0.85em;
- color: #555;
- }
|