-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (59 loc) · 1.54 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>CXCloud</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://use.typekit.net/ksu2ndl.css">
<style type="text/css">
html, body {
height: 100%;
padding: 0;
margin: 0;
}
body {
background-color: #2E294E;
display: flex;
justify-content: center;
align-items: center;
font-family: "mono45-headline";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizelegibility;
}
.main {
text-align: center;
}
h1 {
color: #00FFC6;
letter-spacing: 1em;
margin-right: -1em;
font-weight: 400;
font-size: 2.5em;
}
nav {
color: #fff;
}
nav a {
color: #fff;
text-decoration: none;
letter-spacing: 2px;
}
nav a:hover {
color: #00FFC6;
}
</style>
</head>
<body>
<section class="main">
<h1>CXCLOUD</h1>
<nav>
<a href="https://docs.cxcloud.com">Docs</a>
<span>・</span>
<a href="https://github.com/cxcloud">Github</a>
<span>・</span>
<a href="https://campaigns.tieto.com/CXCloud" target="_blank">More Info</a>
</nav>
</section>
</body>
</html>