-
Notifications
You must be signed in to change notification settings - Fork 0
/
master.css
141 lines (119 loc) · 1.84 KB
/
master.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
* {
margin: 0 auto;
padding: 0px;
}
ul,
li {
list-style: none;
}
.cl {
clear: both;
}
.wrapper {
width: 1000px;
}
.photo {
border: 1px solid #eee;
padding: 10px;
}
.title {
background: #369;
color: #fff;
line-height: 42px;
padding-left: 10px;
margin-top: 20px;
position: relative;
}
.title .title-status {
position: absolute;
right: 10px;
}
.title .title-btn {
background: #f90;
text-decoration: unset;
color: #fff;
border-radius: 2px;
padding: 2px 5px;
}
.title .title-status a {
color: #fff;
}
.photo li {
float: left;
width: 200px;
height: 120px;
border: 1px solid #eee;
padding: 5px;
margin: 5px;
border-radius: 2px;
overflow: hidden;
}
.photo li.folder {
background: #eee;
line-height: 120px;
text-align: center;
font-size: 20px;
color: #369;
font-weight: bold;
cursor: pointer;
}
.photo li img {
width: 100%;
transition: all .3s;
}
.photo li:hover img {
transform: scale(1.1);
}
.form {
border: 1px solid #eee;
}
.form li {
width: 476px;
margin: 10px 10px 10px 10px;
float: left;
height: 36px;
line-height: 36px;
}
.form .txt {
padding-left: 20px;
width: 456px;
border: 1px solid #eee;
height: 36px;
background: #fff;
}
.form .btn {
width: 476px;
height: 36px;
background: #369;
color: #fff;
border: 0px;
}
.form .btn:hover {
background: #368;
}
/*
自定义类
by chester
*/
.photo li.folder a {
color: #369;
text-decoration: none;
display: block;
width: 100%;
height: 100%;
}
.title .title-status-left {
float: left;
margin-left: 10px;
}
.title .title-status-left a {
color: #fff;
}
.title{
min-height:42px;
}
.no-photo{
font-size: 18px;
text-align: center;
line-height: 100px;
}