-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (90 loc) · 2.17 KB
/
index.html
File metadata and controls
91 lines (90 loc) · 2.17 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
82
83
84
85
86
87
88
89
90
91
<html>
<head>
<title>Crufters | Build your dream</title>
<meta charset="UTF-8" />
<meta
name="description"
content="Startup consultants who build your dreams"
/>
<meta name="keywords" content="startups, consulting, engineering" />
<meta name="author" content="Crufters" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<style>
html {
font-family: Inconsolata, monospace;
background-color: #111315;
color: #fff;
}
a {
color: #20c20e;
}
#contact {
display: inline-block;
padding: 2px;
}
#content {
max-width: 1600px;
margin: 0 auto;
padding: 5em;
}
#cursor {
color: #fff;
}
#desc, #para {
color: grey;
}
#title {
font-weight: bold;
font-size: 0.8em;
text-decoration: none;
}
#title::after {
content: "";
width: 3px;
height: 25px;
margin-left: 8px;
margin-top: 2px;
background: #fff;
display: inline-block;
vertical-align: top;
animation: cursor-blink 1.5s steps(2) infinite;
}
#blurb {
font-weight: bold;
font-size: 3em;
display: inline-block;
}
@keyframes cursor-blink {
0% {
opacity: 0;
}
}
@media only screen and (max-width: 600px) {
#content {
padding: 1em;
}
}
</style>
</head>
<body>
<div id="content">
<div id="header">
<h1><a href="https://github.com/crufters" id="title">CRUFTERS</a></h1>
</div>
<div id="main">
<h1 id="blurb">Build and win with us</h1>
<h3 id="desc">Deploy our hacker group</h3>
<br />
<h4 id="para">
Become so agile that Paul Graham writes articles about your company.
</h4>
<h3>
Email us if you need
<a href="mailto:dobronszki@gmail.com" id="contact">tech brainpower</a> for your
project.
</h3s>
</div>
</div>
</body>
</html>