-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (46 loc) · 1.08 KB
/
index.html
File metadata and controls
52 lines (46 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>Chisel Works</title>
<style>
a {
color: brown;
text-decoration: none;
}
a:hover {
color: darkred;
}
.content {
display: flex;
font-family: monospace;
flex-direction: column;
min-height: 100vh;
text-align: center;
}
.is-background {
background-color: orange;
}
.is-foreground {
color: black;
}
.is-vertical {
align-content: center;
align-items: center;
flex-wrap: wrap;
justify-content: center;
}
.title {
font-weight: 700;
text-transform: uppercase;
}
</style>
</head>
<body class="is-background">
<main class="is-foreground">
<div class="content is-vertical">
<h1 class="title">Not available</h1>
<p>this site will be up as soon as possible, check it out later<br>contact <a href="https://github.com/oAGoulart">@oAGoulart</a> for info</p>
</div>
</main>
</body>
</html>