-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
103 lines (87 loc) · 1.43 KB
/
style.css
File metadata and controls
103 lines (87 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
.example-parent {
border: 2px solid #DFA612;
color: black;
display: flex;
font-family: sans-serif;
font-weight: bold;
}
.example-parent.ex1 > div {
width: 50%;
}
.example-parent.advanced .example-draggable {
width: 300px;
}
.example-origin {
padding: 10px;
margin: 0 auto;
}
.example-draggable {
background-color: #4AAE9B;
font-weight: normal;
margin-bottom: 10px;
margin-top: 10px;
padding: 20px;
will-change: transform, opacity;
opacity: 1;
transition: transform ease-in-out .2s, opacity ease-in-out .2s;
}
.example-draggable {
cursor: pointer;
}
.example-draggable.hide {
visibility: hidden;
}
.example-draggable.dragstart {
cursor: grabbing;
opacity: 0.6;
}
.example-draggable.dragover {
transform: scale(1.1);
}
.example-dropzone {
background-color: #6DB65B;
padding: 20px;
}
.gray {
background-color: #CBD5E0;
}
.orange {
background-color: #F6AD55;
}
.yellow {
background-color: #F6E05E;
}
.green {
background-color: #68D391;
}
.blue {
background-color: #4299E1;
}
.footer {
text-align: center;
}
.footer a {
text-decoration: none;
}
.footer a:hover {
text-decoration: underline;
}
.wrapper {
position: relative;
width: 300px;
height: 59px;
margin: 10px 0;
will-change: transform;
transition: transform ease-in-out .2s;
background-color: #4AAE9B;
}
.wrapper.over {
transform: scale(1.1);
}
.example-draggable.moving {
opacity: 0.0001;
cursor: grabbing;
}
.grabbing {
cursor: grabbing;
}