-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (72 loc) · 1.63 KB
/
index.html
File metadata and controls
82 lines (72 loc) · 1.63 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
<!DOCTYPE html>
<html>
<head>
<title>upend.org</title>
<!-- <link rel='shortcut icon' type='image/x-icon' href='images/upend_fav_icon.png' /> -->
<style media="screen" type="text/css">
html {
min-width: 320px;
height: 100%;
box-sizing: border-box;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
body, a:link {
color:#808080;
}
body {
position: relative;
margin: 0;
padding-bottom: 6rem;
min-height: 100%;
font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}
a:link {
text-decoration: none;
}
.main {
margin: 0 auto;
padding-top: 20px;
text-align: center;
}
.logo-text {
font-size: 400%;
}
.info {
max-width: 540px ;
margin-left: auto ;
margin-right: auto ;
}
/**
* Footer Styles
*/
.footer {
position: absolute;
right: 0;
bottom: 0;
left: 0;
padding: 1rem;
text-align: center;
font-size:66%;
}
</style>
</head>
<body>
<div class="main">
<br/>
<p class="logo-text">upend.org</p>
<div class="info">
<p>a future rebel base of the web resistance.</p>
<p>take back the web. take back our world.<p>
<p>#resist</p>
</div>
</div>
<div class="footer">
<p>a <a href="http://www.commonkarma.org">commonkarma</a> project</p>
<!-- ©2017 upend.org all rights reserved -->
</div>
</body>
</html>