-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathjsassist.css
101 lines (84 loc) · 2.17 KB
/
jsassist.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
@import url(http://fonts.googleapis.com/earlyaccess/jejugothic.css);
@import url(http://fonts.googleapis.com/earlyaccess/hanna.css);
@import url(http://fonts.googleapis.com/earlyaccess/nanumgothic.css);
@import url(http://fonts.googleapis.com/earlyaccess/nanumbrushscript.css);
@import url(http://fonts.googleapis.com/earlyaccess/nanumpenscript.css);
@import url(http://fonts.googleapis.com/earlyaccess/notosanskr.css);
body {
background: rgba(64, 80, 80, 0.0);
}
.chat_container {
width: 100%;
position: absolute;
bottom: 0;
left: 0;
overflow: hidden;
}
.chat_wrapper {
width: 100%;
height: 100%;
-webkit-transform: translate(-50%, -50%);
position: fixed;
top: 50%;
left: 50%;
overflow: hidden;
}
.chat_element {
width: 250px;
height: auto;
max-height: 100px;
border-radius: 3px;
background-color: rgba(255, 255, 255, 0.5);
vertical-align: middle;
overflow: hidden;
}
.chat_text_nickname {
font-family: 'Jeju Gothic', serif;
font-size: 14px;
color: white;
text-shadow: 0px 0px 4px #000000, 0px 0px 2px #000000;;
vertical-align: middle;
}
.chat_text_message {
font-family: 'Jeju Gothic', serif;
font-size: 16px;
color: white;
text-shadow: 0px 0px 4px #000000, 0px 0px 2px #000000,
-1px -1px 0 #404040, /* stroke test */ 1px -1px 0 #404040,
-1px 1px 0 #404040,
1px 1px 0 #404040;
width: 90%;
height: auto;
max-height: 75px;
border-radius: 1px 5px 5px 5px;
background-color: rgba(255, 255, 255, 0.25);
padding: 5px;
margin-top: 5px;
margin-bottom: 20px;
margin-left: 15px;
vertical-align: middle;
overflow: hidden;
}
.chat_platform_twitch {
width: 16px;
margin-right: 5px;
content: url('./img/icon_twitch_small.png');
vertical-align: middle;
}
.chat_platform_youtube {
width: 16px;
margin-right: 5px;
content: url('./img/icon_youtube_small.png');
vertical-align: middle;
}
.chat_platform_tvpot {
width: 16px;
margin-right: 5px;
content: url('./img/icon_tvpot_small.png');
vertical-align: middle;
}
.chat_platform_none {
width: 16px;
margin-right: 20px;
vertical-align: middle;
}