Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
17mie32
GitHub Repository: 17mie32/17mie32.github.io
Path: blob/main/css/barrager.css
1317 views
1
.barrage {
2
position: fixed;
3
bottom: 70px;
4
right: -500px;
5
display: inline-block;
6
width: 500px;
7
z-index: 99999
8
}
9
10
.barrage_box {
11
background-color: rgba(0, 0, 0, .5);
12
padding-right: 8px;
13
height: 40px;
14
display: inline-block;
15
border-radius: 25px;
16
transition: all .3s;
17
}
18
19
.barrage_box .portrait {
20
display: inline-block;
21
margin-top: 4px;
22
margin-left: 4px;
23
width: 32px;
24
height: 32px;
25
border-radius: 50%;
26
overflow: hidden;
27
}
28
29
.barrage_box .portrait img {
30
width: 100%;
31
height: 100%;
32
}
33
34
.barrage_box div.p a {
35
margin-right: 2px;
36
font-size: 14px;
37
color: #fff;
38
line-height: 40px;
39
margin-left: 18px;
40
}
41
42
.barrage_box div.p a:hover {
43
text-decoration: underline;
44
}
45
46
.barrage_box .close {
47
visibility: hidden;
48
opacity: 0;
49
text-align: center;
50
width: 25px;
51
height: 25px;
52
margin-left: 20px;
53
border-radius: 50%;
54
background: rgba(255, 255, 255, .1);
55
margin-top: 8px;
56
background-image: url(/medias/barrager/close.png);
57
}
58
59
.barrage_box:hover .close {
60
visibility: visible;
61
opacity: 1;
62
}
63
64
.barrage_box .close a {
65
display: block;
66
}
67
68
.barrage_box .close .icon-close {
69
font-size: 14px;
70
color: rgba(255, 255, 255, .5);
71
display: inline-block;
72
margin-top: 5px;
73
}
74
75
.barrage .z {
76
float: left !important;
77
}
78
79
.barrage a {
80
text-decoration: none;
81
}
82