-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathindex.html
151 lines (134 loc) · 4.21 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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!DOCTYPE html>
<meta name="viewport" content="width=device-width">
<style>
html,
body {
margin: 0;
height: 100%;
padding: 0;
}
body {
font-family: "Consolas", "Inconsolata", "Lucida Console", Monospace;
font-size: 15px;
line-height: 120%;
min-height: 100%;
}
.number {
font-family: "Consolas", "Inconsolata", "Lucida Console", Monospace;
font-size: 15px;
}
div.wrapper {
min-height: 100%;
position: relative;
}
div.main {
border: 0px solid transparent;
font-size: 15px;
padding-bottom: 48px;
margin-left: auto;
margin-right: auto;
}
div.footer {
width: 100%;
position: absolute;
bottom: 0;
left: 0;
vertical-align: middle;
background-color: #DDDDDD;
cursor: pointer;
min-width: 512px;
padding-top: 10px;
padding-bottom: 10px;
font-family: "Consolas", "Inconsolata", "Lucida Console", Monospace;
font-size: 15px;
}
div.footer a {
color: #888888;
text-decoration: none;
vertical-align: middle;
padding: 10px;
}
div.header {
font-family: "Consolas", "Inconsolata", "Lucida Console", Monospace;
line-height: 120%;
font-weight: bold;
font-size: 16px;
padding-left: 16px;
padding-right: 16px;
padding-top: 12px;
padding-bottom: 0px;
min-width: 480px;
}
div.header span {
color: #000000;
}
div.header i.back_arrow {
transform:rotate(90deg) scale(0.75);
line-height:0;
position:relative;
bottom:-0.2em;
}
span.title {
font-weight: bold;
}
table, tr, td {
padding: 4px;
border: 0px solid transparent;
}
a:link {
color: #777777;
text-decoration: none;
}
a:visited {
color: #777777;
text-decoration: none;
}
a:hover {
color: #000000;
text-decoration: underline;
}
a:active {
color: #000000;
text-decoration: underline;
}
hr {
height: 1px;
border-width: 0;
color: #888888;
background-color: #888888;
}
</style>
<html>
<head>
<title>Display Technology Utilities and Information Repository</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />
</head>
<body>
<div class="wrapper">
<div class="main">
<div class="header">
Display Technology Information Repository and Utilities
<hr />
</div>
<table style="padding-left:20px;">
<tr><td>Please note: This webpage was created for personal use, and is not intended to be a publicly presentable website. I am a caveman when it comes to software and web development.</td></tr>
<tr><td><span class="title">Utilities</span>
<ul>
<li><a href="./diu/">Display Info Utility</a></li>
<li><a href="./flickerer/">Flickering Utility (for response time testing)</a></li>
</ul>
</td></tr>
<tr><td><span class="title">Information</span>
<ul>
<li><a href="./docs/">Display Industry Standards Archive</a></li>
<li><a href="./adapters/">Guide to Display Cables and Adapters Draft</a> (Final versions go live <a target="_blank" href="https://linustechtips.com/main/topic/729232-guide-to-display-cables-adapters-v2/">here</a>)</li>
</ul>
</td></tr>
</table>
</div>
<div class="footer" onclick="document.getElementById('profile_link').click();">
<a id="profile_link" target="_blank" href="https://linustechtips.com/main/profile/2466-glenwing/">Glenwing</a>
</div>
</div>
</body>
</html>