-
Notifications
You must be signed in to change notification settings - Fork 0
/
chat.css
75 lines (60 loc) · 1.91 KB
/
chat.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
/* *** Twitch Chat Reset *** */
body {
background-color: rgba(0, 0, 0, 0);
margin: 0px auto;
overflow: hidden;
}
.room-selector__header.tw-align-items-center.tw-border-b.tw-border-l.tw-border-r.tw-c-background-alt-2.tw-flex.tw-flex-shrink-0.tw-full-width.tw-justify-content-between.tw-pd-l-2.tw-pd-r-1,
.chat-input.tw-block.tw-pd-b-2.tw-pd-x-2,
.chat-line__status,
.simplebar-track {
position: absolute;
top: -9999px;
}
.simplebar-scroll-content {
overflow-x: hidden;
overflow-y: hidden;
box-sizing: content-box;
}
.tw-theme--dark .tw-border-l,
.tw-theme--light .tw-border-l {
border-left: 0px solid black;
}
.chat-list.tw-flex.tw-flex-column.tw-flex-grow-1.tw-flex-nowrap.tw-overflow-hidden {
width: 100vw;
}
/* *** End Twitch Chat Reset *** */
/* *** Chat Styles *** */
@import url('https://fonts.googleapis.com/css?family=Fira+Mono');
body {
font-family: 'Fira Mono', monospace !important;
}
.tw-full-height {
height: 100% !important;
display: flex;
flex-direction: column;
/* align-items: center; */
}
.chat-line__message,
.chat-line__moderation,
.chat-line__status {
padding: 15px;
word-wrap: break-word;
font-size: 20px;
color: #ffffff;
}
.tw-c-background-alt-2.tw-c-text.tw-flex.tw-flex-grow-0.tw-flex-shrink-0.tw-full-height.tw-full-width.tw-overflow-hidden {
background-color: #2d2a2e !important;
}
.tw-absolute.tw-bottom-0.tw-left-0.tw-overflow-hidden.tw-right-0.tw-top-0.twilight-minimal-root {
background-color: #2d2a2e !important;
}
.tw-c-background-alt-2 {
background-color: #2d2a2e !important;
}
.chat-list.tw-flex.tw-flex-column.tw-flex-grow-1.tw-flex-nowrap.tw-overflow-hidden {
background-color: #2d2a2e !important;
}
.chat-room__content.tw-border-l.tw-c-background-alt-2.tw-c-text.tw-flex.tw-flex-column.tw-flex-grow-1.tw-flex-nowrap.tw-full-height.tw-overflow-hidden.tw-relative {
border: darkgoldenrod 0px solid !important;
}