-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbarrager.css
81 lines (70 loc) · 1.36 KB
/
barrager.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
.barrage {
position: fixed;
bottom: 70px;
right: -500px;
display: inline-block;
width: 500px;
z-index: 99999
}
.barrage_box {
background-color: rgba(0, 0, 0, .5);
padding-right: 8px;
height: 40px;
display: inline-block;
border-radius: 25px;
transition: all .3s;
}
.barrage_box .portrait {
display: inline-block;
margin-top: 4px;
margin-left: 4px;
width: 32px;
height: 32px;
border-radius: 50%;
overflow: hidden;
}
.barrage_box .portrait img {
width: 100%;
height: 100%;
}
.barrage_box div.p a {
margin-right: 2px;
font-size: 14px;
color: #fff;
line-height: 40px;
margin-left: 18px;
}
.barrage_box div.p a:hover {
text-decoration: underline;
}
.barrage_box .close {
visibility: hidden;
opacity: 0;
text-align: center;
width: 25px;
height: 25px;
margin-left: 20px;
border-radius: 50%;
background: rgba(255, 255, 255, .1);
margin-top: 8px;
background-image: url(/medias/barrager/close.png);
}
.barrage_box:hover .close {
visibility: visible;
opacity: 1;
}
.barrage_box .close a {
display: block;
}
.barrage_box .close .icon-close {
font-size: 14px;
color: rgba(255, 255, 255, .5);
display: inline-block;
margin-top: 5px;
}
.barrage .z {
float: left !important;
}
.barrage a {
text-decoration: none;
}