-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·148 lines (127 loc) · 3.67 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
<!doctype html>
<html lang="en">
<head>
<title>Code Orange | projects</title>
<link rel="icon" type="image/png" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Code Orange - Software development studio with a strong focus on clever solutions to complex problems">
<style>
html, body {
margin: 0;
padding: 0;
}
html {
height: 100%;
}
body {
margin-top: 4rem;
background-color: #c6c2bd;
height: calc(100% - 4rem);
font-family: 'Roboto', sans-serif;
}
.container {
position: relative;
margin-left: auto;
margin-right: auto;
padding-right: 15px;
padding-left: 15px;
background-color: white;
padding-top: 2rem;
min-height: calc(100% - 2rem);
}
@media (min-width: 576px) {
.container {
padding-right: 15px;
padding-left: 15px;
}
}
@media (min-width: 768px) {
.container {
padding-right: 15px;
padding-left: 15px;
}
}
@media (min-width: 992px) {
.container {
padding-right: 15px;
padding-left: 15px;
}
}
@media (min-width: 1200px) {
.container {
padding-right: 15px;
padding-left: 15px;
}
}
@media (min-width: 576px) {
.container {
width: 540px;
max-width: 100%;
}
}
@media (min-width: 768px) {
.container {
width: 720px;
max-width: 100%;
}
}
@media (min-width: 992px) {
.container {
width: 960px;
max-width: 100%;
}
}
@media (min-width: 1200px) {
.container {
width: 1140px;
max-width: 100%;
}
}
.inner {
width: 100%;
margin-left: auto;
margin-right: auto;
}
@media (min-width: 576px) {
.inner {
width: 50%;
}
}
.logo {
width: 100%;
margin-left: auto;
margin-right: auto;
display: block;
}
h1 {
margin-top: 5rem;
}
h2 {
margin-top: 3rem;
font-weight: 300;
}
h2 a {
color: initial;
text-decoration: none;
}
</style>
</head>
<body>
<div class="container">
<div class="inner">
<a href="https://code-orange.nl"><img src="/img/logo.svg" alt="Code Orange" class="logo"></a>
<h1>Oops, there's nothing here</h1>
<p>
This domain is reserved for projects by <a href="https://code-orange.nl/">Code Orange</a>.
Did you get this link from someone at Code Orange?
Ask them to send you a new link directly to the right project.
</p>
<p>
In the meantime, why don't you check out <a href="https://followww.co/">followww.</a> or <a href="https://gmail-message-id-finder.co/">Gmail message ID finder</a>?
</p>
<h2><a href="https://code-orange.nl/">Code Orange</a></h2>
</div>
</div>
</body>
</html>
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" rel="stylesheet">