forked from pcottle/MSOutlookit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (87 loc) · 2.98 KB
/
index.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Mail - Outlook</title>
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="backgradient">
<table>
<tr class="mainrow">
<td class="leftcol">
<div class="leftcolupper"></div>
<div class="folderholder"></div>
</td>
<td class="middle">
<div class="middleupper"></div>
<div id="previewarea" class="middlewrapper">
<div class="anemail">
<div class="emailicon"></div>
<div class="emailiconright"></div>
<div class="emailpreview">
<div class="emailname">Rick Deckard from HR</div>
<div class="emailtitle">
My suspicions on that new hire...
</div>
</div>
</div>
</div>
</td>
<td class="right">
<div class="theemailbody">
<div style="padding: 30px">
Welcome to MSOutlookit 2013!
<br /><br />
The wonderful @attaxia volunteered to update this UI to the
Outlook 2013 version (code
<a href="https://github.com/attaxia/MSOutlookit">here</a>). This
newer version is still a work in progress, but the old version
is still available <a href="https://pcottle.github.io/MSOutlookit/2004/index.html">here</a>.
<br /><br />
Refactor and CSS Fix by <a href="https://github.com/n3evin/MSOutlookit">N3evin</a>
<br /><br />
<b><font style="color:red">✔</font></b> = NSFW
<br /><br />
<p>
<i>
Want to add subreddits? Click the "New Email" button and
follow the instructions!</i
>
</p>
<br /><br />
<p>
<b>Changelog</b>
<ul>
<li>Refactor and CSS Fix</li>
<li>Change to infinite scrolling</li>
<li>Sort by new instead of hot</li>
</ul>
</p>
</div>
</div>
</td>
</tr>
</table>
</div>
<div class="upperleft"></div>
<div class="upperright"></div>
<div class="newemailbutton"></div>
<div class="leftcollower"></div>
<div class="topbar"></div>
<div class="buttons"></div>
<div class="bottombar"></div>
<script
src="https://code.jquery.com/jquery-1.12.4.min.js"
integrity="sha256-ZosEbRLbNQzLpnKIkEdrPv7lOy9C27hHQ+Xp8a4MxAQ="
crossorigin="anonymous"
></script>
<script src="js/jquery.ui.core.min.js"></script>
<script src="js/jquery.ui.widget.min.js"></script>
<script src="js/jquery.ui.mouse.min.js"></script>
<script src="js/jquery.ui.draggable.min.js"></script>
<script src="js/jquery.ui.resizable.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>