forked from rajeshpillai/youtube-react-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
53 lines (45 loc) · 716 Bytes
/
App.css
File metadata and controls
53 lines (45 loc) · 716 Bytes
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
.App {
text-align: center;
width: 95%;
margin: 15px auto;
}
.container-drag {
text-align: center;
}
.wip {
position: absolute;
width: 150px;
height: 100vh;
left: 0;
top: 10;
background-color: #EEEEEE;
border-right: 1px dotted;
}
.header {
display: inline-block;
margin: 0;
padding: 0;
background-color: #E0E0E0;
width:100%;
}
.task-header {
display: inline-block;
background-color: skyblue;
width:100%;
}
.droppable {
position: absolute;
width: 150px;
height: 100vh;
right: 0;
top: 10;
background-color: #9E9E9E;
border-left: 1px dotted;
}
.draggable {
width: 100px;
height: 100px;
background-color: yellow;
margin: 5px auto;
line-height: 5em;
}