-
Notifications
You must be signed in to change notification settings - Fork 7
/
mailinglist.html
124 lines (104 loc) · 2.51 KB
/
mailinglist.html
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
116
117
118
119
120
121
122
123
124
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>io mailing list archive</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="home.css">
<link rel="stylesheet" href="home_header.css">
<script src="mailinglist/archive.js"></script>
<script src="mailinglist/mailinglist.js"></script>
<link rel="stylesheet" href="fonts/Helvetica/fonts.css">
<style>
.header {
font-family: 'Helvetica Neue', 'Helvetica', 'Sans';
/*font-weight: normal;*/
color: #fff;
}
.message {
font-family: "Helvetica Neue", Helvetica, Arial;
/*font-size: 0.9em;*/
line-height: 1.2em;
color: #ccc;
margin-top: 1em;
padding-bottom: 0.5em;
/*border-bottom: 1px solid #999;*/
width: auto;
animation: fadein 1.5s;
overflow-x: hidden;
}
.messageHeader {
font-style: normal;
white-space: pre-wrap;
color: #99c;
font-family: 'Helvetica Neue', 'Helvetica', 'Sans';
/*font-weight: normal;*/
}
.messageContent {
font-family: "Helvetica LT W01 Light", sans-serif;
/*animation: fadein 1s;*/
padding-top: 1.5em;
/*font-weight: light;*/
/*margin-left: 2em;*/
white-space: pre-wrap;
}
/*
.menu {
}
*/
.menuItem {
display: inline-block;
/*padding-right: 0.5em;*/
color: #aaa;
}
.menuItemSelected {
display: inline-block;
padding-right: 1em;
font-family: "Helvetica Neue Bold", sans-serif;
/*font-weight: bold;*/
color: white;
}
.pathView {
display: inline-block;
}
.PathItem {
display: inline-block;
}
.PathItemTitle {
display: inline-block;
transition: background-color .15s linear, color .15s linear;
}
.PathItemTitle:hover {
display: inline-block;
color: #aaa;
}
.indexName {
display: inline-block;
color: #ccc;
}
.messageDivider {
min-width: 30em;
max-width: 30em;
max-height: 1px;
border-bottom: 1px solid #444;
}
</style>
</head>
<body>
<div class="container leftSpace">
<div class="header">
<div class="pageHeader">
<div class="topSpace"></div>
<div class="pageTitle"><a href="index.html">Io</a></div>
<div class="pageSubtitle">
<div id="pathView" class="pathView"></div>
</div>
</div>
</div>
<br>
<div id="messagesView" class="text" style="border: 0px solid #f00; max-width:100%; margin-right: 10px;">
</div>
<br><br><br>
</div>
</body>
</html>