Skip to content

Commit 965d682

Browse files
committed
Initial commit
0 parents  commit 965d682

File tree

3 files changed

+60
-0
lines changed

3 files changed

+60
-0
lines changed

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
inuitcss.com

img/logo.png

37.7 KB
Loading

index.html

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, minimum-scale=1.0">
6+
7+
<title>inuitcss</title>
8+
9+
<style>
10+
11+
html {
12+
font: 0.75em/1.5 sans-serif;
13+
color: #333;
14+
background-color: #fafafa;
15+
}
16+
17+
body {
18+
margin: 0 auto;
19+
max-width: 720px;
20+
padding: 18px;
21+
}
22+
23+
.headline {
24+
font-size: 24px;
25+
line-height: 1;
26+
text-align: center;
27+
}
28+
29+
.headline__link {
30+
display: block;
31+
text-decoration: none;
32+
color: #333;
33+
-webkit-transition: 0.2s;
34+
-moz-transition: 0.2s;
35+
transition: 0.2s;
36+
}
37+
38+
.headline__link:hover {
39+
color: #4a8ec2;
40+
}
41+
42+
.headline__image {
43+
max-width: 100%;
44+
display: block;
45+
}
46+
47+
</style>
48+
</head>
49+
<body>
50+
51+
<h1 class="headline">
52+
<a href="https://github.com/inuitcss" class="headline__link">
53+
<img src="img/logo.png" alt="inuitcss" class="headline__image" />
54+
coming soon…
55+
</a>
56+
</h1>
57+
58+
</body>
59+
</html>

0 commit comments

Comments
 (0)