-
Notifications
You must be signed in to change notification settings - Fork 2
/
slack.css
53 lines (53 loc) · 891 Bytes
/
slack.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
body {
font-family: sans-serif;
background: #333; /*black;*/
color: white;
font-size: 1.25em;
}
::-webkit-scrollbar {
display: none;
}
.ts {
display: table-cell;
width: 5.6em;
font-family: monospace;
font-size: 110%;
}
.att {
padding-left: .5em;
border-left: 1px solid white;
}
div.msg {
display: inline;
white-space: pre-wrap;
word-wrap: break-word;
}
div.line {
display: table;
clear: both;
}
.user {
font-weight: bold;
}
a, a:visited {
color: #8888ff;
}
.att img {
float: right;
padding-left: .5em;
max-height: 200px;
max-width: 800px;
}
.separator {
font-size: 125%;
font-weight: 700;
text-align: center;
height: .5em;
border-bottom: 2px solid white;
margin-bottom: 1em;
margin-top: .5em;
}
.separator:first-line {
height: 1em;
background-color: black;
}