-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathTranscriptViewBaseAlternate.html
More file actions
99 lines (99 loc) · 2.87 KB
/
TranscriptViewBaseAlternate.html
File metadata and controls
99 lines (99 loc) · 2.87 KB
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
<html>
<head><style>
body {
background-color:transparent;
margin-top:1em;
margin:1em 0.5em;
}
div.message {
font-size:10pt;
font-family:Helvetica;
color:black;
text-shadow:0px 1px rgba(255,255,255,0.55);
padding:0.5em 1em;
display:table-row;
}
div.clear {
clear:both;
}
div.message > .msect {
display:table-cell;
height:100%;
padding:0.5em 0;
}
div.message > .msect.timestamp {
padding-right:0.5em;
color:#637995;
font-weight:200;
font-size:9pt;
}
div.message > .msect.content-wrapper > .sender {
font-size:9pt;
font-weight:bold;
color:#666666;
}
div.message.ours > .msect.content-wrapper > * {
border-left:4px solid #5486ff;
padding-left:5px;
}
div.message.theirs > .msect.content-wrapper > * {
border-left:4px solid gray;
padding-left:5px;
}
</style></head>
<body>
<div class="message ours">
<div class="msect timestamp">
13:50
</div>
<div class="msect content-wrapper">
<div class="sender">Me</div>
<div class="contents">The seagull, wonder if she is sad</div>
</div>
</div>
<div class="message ours">
<div class="msect timestamp">
13:50
</div>
<div class="msect content-wrapper">
<div class="sender">Me</div>
<div class="contents">left alone without being touched</div>
</div>
</div>
<div class="message ours">
<div class="msect timestamp">
13:50
</div>
<div class="msect content-wrapper">
<div class="sender">Me</div>
<div class="contents">by the blue of the sky, or the blue of the sea.</div>
</div>
</div>
<div class="message theirs">
<div class="msect timestamp">
13:52
</div>
<div class="msect content-wrapper">
<div class="sender">Richard Stallman</div>
<div class="contents">
Arch is a variant of the GNU/Linux system. It has a flaw:
it contains nonfree programs. Distributing them is not ethical,
and I don't endorse Arch GNU/Linux. However, I think the word
"enemy" is too strong. I think the people who develop Arch
have a preference for free software. What they don't have
is moral firmness.
</div>
</div>
</div>
<div class="message status">
<div class="msect timestamp">
14:21
</div>
<div class="msect content-wrapper">
<div class="contents">
<b><a href="tox://aaaaaaaaaaaaa">Richard Stallman</a></b> is now <b>offline</b>.
</div>
</div>
</div>
</body>
</html>