-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
63 lines (52 loc) · 846 Bytes
/
styles.css
File metadata and controls
63 lines (52 loc) · 846 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
52
53
54
55
56
57
58
59
60
61
62
63
body
{
font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
}
#board
{
min-height:100px;
position:relative;
}
.title
{
background-color: #0000FF;
text-align:center;
color:white;
padding: 2px 0px;
font-weight: blue;
}
#basket
{
left:320px;
}
#flights, #basket
{
background-color: #DCDCDC;
position:absolute;
width: 300px;
min-height:150px;
border: 2px solid black;
}
*[draggable=true]
{
cursor: move;
float:left;
width: 100px;
height: 100px;
clear: left;
margin: 20px;
}
div.airplane {
display: block;
width: 100px;
height: 100px;
}
#blue {
background-image: url('images/blue_airplane.gif');
}
#red {
background-image: url('images/red_airplane.gif');
}
#green {
background-image: url('images/green_airplane.gif');
}