-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
104 lines (91 loc) · 1.8 KB
/
style.css
File metadata and controls
104 lines (91 loc) · 1.8 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
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
.danmako_screen {
width: 100%;
height: 100%;
position: fixed;
left: 0;
top: 0;
display: none;
z-index: 1050;
}
.danmako_screen .s_dm {
}
.danmako_screen .s_dm .s_close {
width: 100px;
height: 40px;
display: block;
border: 0;
text-align: center;
line-height: 40px;
text-decoration: none;
font-size: 21px;
color: #c0c0c0;
position: absolute;
top: 20px;
right: 20px;
z-index: 3;
}
.danmako_screen .s_dm .s_close:hover {
color: #fff;
}
.danmako_screen .s_dm .s_show {
position: relative;
z-index: 2;
}
.danmako_screen .s_dm .s_show div {
line-height: 36px;
font-size: 24px;
font-weight: bold;
position: absolute;
white-space: nowrap;
top: 0;
left: 0;
}
.danmako_screen .send {
width: 100%;
height: 80px;
background: #000;
position: absolute;
bottom: 0;
z-index: 2;
}
.danmako_screen .send .s_con {
width: 100%;
height: 80px;
text-align: center;
line-height: 80px;
}
.danmako_screen .send .s_con .s_txt {
width: 700px;
height: 40px;
border: 0;
font-size: 18px;
padding-left: 12px;
border-radius: 3px 0 0 3px;
outline: none;
}
.danmako_screen .send .s_con .s_btn {
width: 100px;
height: 40px;
background: #088;
border: 0;
font-size: 18px;
color: #fff;
cursor: pointer;
border-radius: 0 3px 3px 0;
outline: none;
}
.danmako_screen .send .s_con .s_btn:hover {
background: #006c6c;
}
.danmako_screen .s_dm .mask {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: #004D67;
opacity: 0.5;
filter: alpha(opacity=50);
z-index: 1;
}
/*end danmako_screen*/