-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
59 lines (49 loc) · 932 Bytes
/
style.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
body{
padding: 0;
margin: 0;
}
.selectingBox{
width: 100px;
height:100px;
z-index: 2;
background-image:url(gfx/file_sprite.png);
border: 1px solid #aaa;
float:left;
margin: 0 10px 10px 0;
}
.file{
background-image:url(gfx/file_sprite.png);
}
.folder{
background-image:url(gfx/folder_sprite.png);
}
.selectingBox:hover{
background-position: 0 -100px;
}
.selectedBox, .selectedBox:hover{
background-position: 0 -200px;
}
body{
background-color: #ccc;
}
#back{
width: 100%;
min-height:500px;
background-color:#aaa;
padding:30px;
}
#selection{
-moz-opacity: .20;
-khtml-opacity: .20;
-webkit-opacity: .20;
opacity: .20;
background-color:#09F;
height: 100px;
display: none;
width: 100px;
position: absolute;
border: 1px solid #00f;
}
li.done{
text-decoration: line-through;
}