-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
40 lines (38 loc) · 1.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Neu-Axentix - Dev Server</title>
<link rel="icon" type="image/svg+xml" href="logo.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="utf-8" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="../node_modules/axentix/dist/axentix.min.css" />
<style>
body {
font-family: 'Quicksand', sans-serif;
}
</style>
</head>
<body class="layout">
<main class="grey light-4">
<div class="container">
<div class="card white light-shadow-2 rounded-2 mt-5">
<div class="card-header text-center d-flex fx-center vcenter">
<img src="./logo.svg" height="70" alt="ax-logo" />
<h1 class="d-flex ml-3">Examples list</h1>
</div>
<div class="card-content text-center d-flex fx-col">
<a class="text-airforce text-dark-2 font-w600 font-s4 py-2 capitalize" target="_blank" href="/examples/buttons.html">buttons</a>
<a class="text-airforce text-dark-2 font-w600 font-s4 py-2 capitalize" target="_blank" href="/examples/cards.html">cards</a>
<a class="text-airforce text-dark-2 font-w600 font-s4 py-2 capitalize" target="_blank" href="/examples/forms.html">forms</a>
<a class="text-airforce text-dark-2 font-w600 font-s4 py-2 capitalize" target="_blank" href="/examples/neumorph.html">neumorph</a>
</div>
<div class="card-footer text-center">Have a great time using Neu-Axentix.</div>
</div>
</div>
</main>
<script src="../node_modules/axentix/dist/axentix.min.js" />
<script type="module" src="./src/index.ts"></script>
</body>
</html>