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
| /*
Twitch chat browsersource CSS for OBS
Just set the URL as https://www.twitch.tv/%%TWITCHCHANNEL%%/chat?popout=true
And paste this entire file into the CSS box
Original by twitch.tv/starvingpoet modified by github.com/Bluscream
General Settings
*/
body {
color: #FFFFFF!important;
margin: 0 auto!important;
overflow: hidden!important;
text-shadow:
-1px -1px 1px #000000,
-1px 1px 1px #000000,
1px -1px 1px #000000,
1px 1px 1px #000000!important;
}
html, body,
.room-selector, .room-selector__header,
.twilight-minimal-root, .tw-root--theme-light,
.popout-chat-page, .chat-room, .tw-c-background-alt,
.chat-container, .ember-chat-container {
background: rgba(0,0,0,0)!important;
background-color: rgba(0,0,0,0.4)!important;
}
/*
Badge Removal
To remove additional badge types - moderator, bits, etc - just make a copy of the one of the following badge selectors and replace the word inbetween the quotes with the hover text
img.badge[alt="Broadcaster"],
img.badge[alt="Moderator"],
img.badge[alt="Subscriber"],*/
img.badge[alt="Twitch Prime"],
img.badge[alt="Turbo"],
img.badge[alt="Verified"]
{
display: none!important;
}
/**
* Remove the header section
*/
.ember-chat .chat-room {
top: 0!important;
}
.ember-chat .chat-header, .room-selector__header {
display: none!important;
}
.ember-chat .chat-messages .chat-line.admin {
display: none!important;
}
/**
* Remove the footer section
*/
.ember-chat .chat-room, .chat-input {
display: none!important;
bottom: -112px!important;
}
/**
* Font Size & Color
*/
.ember-chat .chat-messages .chat-line {
font-size: 24px!important;
line-height: 20px!important;
}
.chat-container, .ember-chat-container {
color: #FFFFFF!important;
}
/**
* Make the chat text white (optional) [thanks to @iggy12345]
**/
.chat-line__message {
color: #FFFFFF;
}
/**
* https://gist.github.com/Bluscream/83083d0cd483b3563b5e2b4d55519003#gistcomment-3770724
**/
html {
font-size: 100% !important;
}
/**
* Small fix to remove the "Stream Chat" Header and the Gift/Cheer Leaderboard header
* https://gist.github.com/Bluscream/83083d0cd483b3563b5e2b4d55519003#gistcomment-3803252
**/
.stream-chat-header, .channel-leaderboard {
display: none !important;
}
|