-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (32 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en-US">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>at.css - opensource CSS to horizontally and vertically center</title>
<link rel="stylesheet" href="at.css">
<style>
:focus { outline-color: navy; }
:link, :visited { color: navy; }
::selection { background: black; color: LightCyan; }
html { background: yellow; color: black; }
html { font: 1.125em/1.5 sans-serif; }
body { min-width: 30em; }
.list-reset { list-style-type: none; padding-left: 0; }
</style>
<style
data-unpkg="https://unpkg.com/position.css@0.1.0/position.css"
data-npm="http://npm.im/position.css">
.static { position: static }
.relative { position: relative }
.absolute { position: absolute }
.fixed { position: fixed }
.sticky { position: sticky }
</style>
<div class="absolute centre">
<h1>at<wbr>.css</h1>
<ul class="list-reset">
<li><a href="https://github.com/ryanve/at.css">Github</a></li>
<li><a href="https://www.npmjs.com/package/at.css">npm</a></li>
<li><a href="https://unpkg.com/at.css@latest/">unpkg</a></li>
</ul>
</div>