-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
168 lines (142 loc) · 2.84 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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Inspirationbot</title>
</head>
<body>
<h1>
Welcome to inspirationbot!
</h1>
<h2>
This site is a portal to random resources for drawing inspiration.
</h2>
<p>
Furthermore, this site is also a creative outlet for web design. That's why they are several versions of the site -
same content, different looks:
</p>
<nav>
<div class="margin">
<a class="button-primary" href="/versions/collage/main.html">Go to inspirationbot</a>
</div>
<div class="">
<ul>
<li>
<a href="/versions/2/main.html">inspirationbot - Version 2 (WIP)</a>
</li>
<li>
<a href="/versions/destijl/main.html">inspirationbot - De Stijl Version (WIP)</a>
</li>
</ul>
</div>
</nav>
</body>
<script data-goatcounter="https://4fv6f2j3fn3rufdp.goatcounter.com/count" async src="//gc.zgo.at/count.js"></script>
<style>
html {
font-size: medium;
}
nav {
padding: 64px 0;
width: 100%;
}
.margin {
margin-bottom: 64px;
}
.button-primary {
background-color: #201e8c;
padding: 32px;
border-radius: 4px;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
margin: 32px 0;
color: white !important;
font-weight: bold;
font-size: 24px;
}
body {
background-color: #fffff6;
color: #330;
font-family: georgia, times, serif;
margin: 2rem auto 8rem;
max-width: 40em;
padding: 0 2em;
width: auto;
font-size: 1rem;
line-height: 1.4;
}
a {
color: #1e6b8c;
font-size: 1em;
text-decoration: none;
transition-duration: 0.1s;
transition-property: color, background-color;
transition-timing-function: linear;
}
a:visited {
color: #6f32ad;
font-size: 1em;
}
a:hover {
background: #7979cc;
text-decoration: underline;
}
a:active {
background-color: #427fed;
color: #fffff6;
color: white;
font-size: 1em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: #703820;
font-weight: bold;
line-height: 1.2;
margin-bottom: 1em;
margin-top: 2em;
}
h1 {
font-size: 2.2em;
text-align: center;
}
h2 {
font-size: 1.8em;
border-bottom: solid 0.1rem #703820;
}
h3 {
font-size: 1.5em;
}
h4 {
font-size: 1.3em;
text-decoration: underline;
}
h5 {
font-size: 1.2em;
font-style: italic;
}
h6 {
font-size: 1.1em;
margin-bottom: 0.5rem;
color: #330;
}
pre,
code,
xmp {
font-family: courier;
font-size: 1.1rem;
line-height: 1.4;
white-space: pre-wrap;
}
img {
margin: 2em auto;
padding: 1em;
outline: solid 1px #ccc;
max-width: 90%;
}
</style>
</html>