123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- input {
- border: none;
- outline: none;
- background-color: #ecf0f1;
- padding: 10px;
- color: #942A57;
- border: 0;
- margin: 5px 0;
- display: block;
- width: 100%;
- }
- button {
- background-color: #ecf0f1;
- color: #942A57;
- border: 0;
- padding: 18px 12px;
- margin-left: 6px;
- cursor: pointer;
- outline: none;
- }
- button:hover {
- background-color: #e74c3c;
- color: #ecf0f1;
- }
- .gh-fork {
- position: fixed;
- top: 0;
- right: 0;
- border: 0;
- }
- /* dragula-specific example page styles */
- .wrapper {
- display: table;
- }
- .container {
- display: table-cell;
- background-color: rgba(255, 255, 255, 0.2);
- }
- /*
- * note that styling gu-mirror directly is a bad practice because it's too generic.
- * you're better off giving the draggable elements a unique class and styling that directly!
- */
- .container > div,
- .gu-mirror {
- margin: 10px;
- padding: 10px;
- background-color: rgba(0, 0, 0, 0.2);
- transition: opacity 0.4s ease-in-out;
- }
- .container > div {
- cursor: move;
- cursor: grab;
- cursor: -moz-grab;
- cursor: -webkit-grab;
- }
- .gu-mirror {
- cursor: grabbing;
- cursor: -moz-grabbing;
- cursor: -webkit-grabbing;
- }
- .container .ex-moved {
- background-color: #e74c3c;
- }
- .container.ex-over {
- background-color: rgba(255, 255, 255, 0.3);
- }
- #left-lovehandles > div,
- #right-lovehandles > div {
- cursor: initial;
- }
- .handle {
- padding: 0 5px;
- margin-right: 5px;
- background-color: rgba(0, 0, 0, 0.4);
- cursor: move;
- }
- .image-thing {
- margin: 20px 0;
- display: block;
- text-align: center;
- }
- .slack-join {
- position: absolute;
- font-weight: normal;
- font-size: 14px;
- right: 10px;
- top: 50%;
- margin-top: -8px;
- line-height: 16px;
- }
|