-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsp.css
More file actions
75 lines (64 loc) · 1.05 KB
/
sp.css
File metadata and controls
75 lines (64 loc) · 1.05 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
@charset "UTF-8";
* {
padding: 0;
margin: 0;
}
html, body {
background-color: #f2f2f2;
}
body {
color: #333;
font-size: 12px;
line-height: 18px;
font-family: "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana, sans-serif;
height: 200px;
}
#dirList {
background-color: #eee;
float: left;
height: inherit;
width: 200px;
list-style: decimal inside;
overflow: auto;
border-right: 1px solid #ccc;
}
#dirList li {
border-bottom: 1px solid #ccc;
padding: 3px 0 3px 20px;
color: #000;
font-size: 11px;
line-height: 18px;
cursor: pointer;
}
#dirList li.active, #dirList li:hover {
background-color: #fff;
}
#home {
width: 100px;
position: absolute;
top: 0;
right: 0;
text-align: center;
background-color: #dae5fb;
color: #1a3dc1;
border-bottom: 1px solid #444;
border-left: 1px solid #444;
}
#home:hover {
color: #f00;
}
#smiles {
background: #fff;
height: inherit;
margin: 0 0 0 200px;
overflow: auto;
}
.imgs {
margin: 10px;
cursor: pointer;
}
img.active {
border: 5px solid #f00;
margin: 5px;
cursor: pointer;
}