forked from sciooga/v2ex-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
v2ex_new.css
88 lines (79 loc) · 1.3 KB
/
v2ex_new.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
#imgFun
{
z-index: 100;
position: fixed;
top: 10%;
left: 6px;
color: #999;
transition: left .8s;
}
#imgFunBtn
{
display: inline-block;
float: right;
margin-top: 200px;
margin-left: -8px;
line-height: 56px;
width: 30px;
height: 60px;
border-radius: 12px;
background: #fff;
cursor: pointer;
}
#imgManage
{
display: inline-block;
width: 200px;
padding: 10px 0px;
height: 600px;
text-align: center;
background: #f9f9f9;
overflow: auto;
}
#imgManage > div
{
width: 150px;
height: 150px;
margin: 20px auto;
border-radius: 10px;
border: 2px solid #fffff9;
background-color: #e2e2e2;
transition: all 1s cubic-bezier(.4,.2,.3,1);
}
#imgManage > div > div
{
margin: 10px auto 0px;
width: 130px;
height: 110px;
}
#imgManage img.imgPreview
{
margin: auto;
max-width: 130px;
max-height: 110px;
min-width: 80px;
min-height: 60px;
}
#imgUploadBtn:hover
{
border-bottom: 1px solid;
}
#imgManage input
{
font-size: 12px;
margin-top: 2px;
width: 130px;
}
div#imgManage img.deleteBTN
{
position: relative;
top: -152px;
left: 72px;
cursor: pointer;
opacity: 0;
transition: opacity .3s;
}
div#imgManage > div:hover img.deleteBTN
{
opacity: 1;
}