-
Notifications
You must be signed in to change notification settings - Fork 4
/
demo.css
84 lines (75 loc) · 1.25 KB
/
demo.css
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
body.advanced {
background: #fff url('grid.png') 0 0 repeat scroll
}
.draggable {
-moz-user-select: -moz-none;
-khtml-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
position: absolute;
cursor: pointer;
background-color: #fff;
margin: 0;
padding: 0;
color: #fff;
text-align: center
}
#green {
background-color: green;
height: 350px;
left: 0;
top: 0;
width: 350px;
}
#blue {
background-color: blue;
height: 300px;
left: 25px;
top: 25px;
width: 300px;
}
#red {
background-color: red;
height: 250px;
left: 50px;
top: 50px;
width: 250px;
}
#orange {
background-color: orange;
height: 200px;
left: 75px;
top: 75px;
width: 200px;
}
#magenta {
background-color: magenta;
height: 150px;
left: 100px;
top: 100px;
width: 150px;
}
#yellow {
background-color: yellow;
color: red;
height: 100px;
left: 125px;
top: 125px;
width: 100px;
}
#lightgreen {
background-color: lightgreen;
height: 50px;
left: 150px;
top: 150px;
width: 50px;
}
#info {
height: 300px;
position: absolute;
right: 0;
top: 0;
width: 500px;
z-index: -1;
}