-
Notifications
You must be signed in to change notification settings - Fork 12
/
scrollback.css
58 lines (47 loc) · 928 Bytes
/
scrollback.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
.scrollback-stream {
z-index: 2;
font-family: monospace;
transition: height 0.1s ease-out;
-webkit-transition: height 0.1s ease-out;
-moz-transition: height 0.1s ease-out;
-o-transition: height 0.1s ease-out;
-ms-transition: height 0.1s ease-out;
border-bottom: 0px;
}
.scrollback-timeline {
display: none;
}
.scrollback-text {
background: white;
}
.scrollback-message {
font-size: smaller;
border-left: 0px solid;
text-indent: 0;
padding: 0 3px;
margin: 0.3em 0;
color: #eee;
}
.scrollback-message a {
color: ghostwhite;
}
.scrollback-title {
border-bottom-color: transparent;
}
.scrollback-stream-hidden .scrollback-title-id {
display: block;
}
.scrollback-title-id:before {
content: '#';
}
.scrollback-message-timestamp {
display: none;
}
.scrollback-message-nick {
}
.scrollback-message-content {
padding-left: 5px;
}
.scrollback-message-separator {
display: none;
}