blob: cc79ee7ab74981e6fe7047d5e80eda3b0e4e3880 (
plain)
| 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
 | body {
  background-color: #282c37;
  font-family: sans-serif;
  color: white;
  margin: 0;
  padding: 1em;
  padding-bottom: 0;
}
.avatar {
  cursor: pointer;
}
.avatar img {
  float: left;
  border-radius: 4px;
  margin-right: 4px;
}
.activity-content {
  padding-top: 1em;
}
.attachment {
  margin-top: 1em;
}
.attachment img {
  max-width: 100%;
}
.date a {
  text-decoration: none;
}
.date a:hover {
  text-decoration: underline;
}
.date a,
.counts {
  color: #666;
  font-size: 0.9em;
}
.counts dt,
.counts dd {
  float: left;
  margin-left: 1em;
}
a {
  color: white;
}
.h-card {
  min-height: 48px;
  margin-bottom: 8px;
}
.h-card a {
  text-decoration: none;
}
.h-card a:hover {
  text-decoration: underline;
}
.display-name {
  padding-top: 4px;
  display: block;
  text-overflow: ellipsis;
  overflow: hidden;
  color: white;
}
/* keep emoji from being hilariously huge */
.display-name img {
  max-height: 1em;
}
.display-name .nickname {
  padding-top: 4px;
  display: block;
}
.nickname:hover {
  text-decoration: none;
}
.pull-right {
  float: right;
}
.collapse {
  margin: 0;
  width: auto;
}
a.button {
  box-sizing: border-box;
  display: inline-block;
  color: white;
  background-color: #419bdd;
  border-radius: 4px;
  border: none;
  padding: 10px;
  font-weight: 500;
  font-size: 0.9em;
}
a.button:hover {
  text-decoration: none;
  background-color: #61a6d9;
}
 |