123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /**
- * Uppy CSS and all of its out-of-the-box plugins:
- */
- /**
- * Drag & Drop CSS to style the plugin
- */
- .UppyDragDrop {
- width: 300px;
- text-align: center;
- padding: 100px 10px; }
- /* http://tympanus.net/codrops/2015/09/15/styling-customizing-file-inputs-smart-way/ */
- .UppyDragDrop-input {
- width: 0.1px;
- height: 0.1px;
- opacity: 0;
- overflow: hidden;
- position: absolute;
- z-index: -1; }
- .UppyDragDrop.is-dragdrop-supported {
- border: 2px dashed;
- border-color: #ccc; }
- .UppyDragDrop-label {
- cursor: pointer; }
- .UppyDragDrop-dragText {
- display: none; }
- .is-dragdrop-supported .UppyDragDrop-dragText {
- display: inline; }
- .UppyDragDrop.is-dragover {
- border-color: #d2ecea;
- background-color: #dbf5f3; }
- .uppy {
- font-family: "Comic Sans MS";
- color: purple;
- border: 1px dashed pink;
- font-size: 32px; }
|