-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
120 lines (112 loc) · 3.78 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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="css/index.css" rel="stylesheet" />
<link rel="icon" type="image/x-icon" href="./css/images/icon.png" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
/>
<title>Fusion</title>
</head>
<body>
<div class="flex flex-row">
<!-- header -->
<header>
<nav
class="top-nav flex align-items-center justify-between bg-grey-800"
>
<input id="top-nav-toggle" type="checkbox" />
<a class="text-white flex align-items-center gap-2">
<span class="fas fa-code text-2xl"></span>
<h2 class="text-xl">
<span class="text-indigo-400 text-3xl">FUSION</span>CSS
</h2>
</a>
<ul class="links gap-10">
<li>
<a
class="text-white text-hover-indigo-400 flex justify-center align-items-center text-lg"
href="./pages/docs.html"
>
<i class="fa-solid fa-file-lines mr-2"></i>
Documentation
</a>
</li>
<li>
<a
class="text-white text-hover-indigo-400 flex justify-center align-items-center text-lg"
href="https://github.com/Ananyamadhu08/fusion"
target="_blank"
>
<i class="fab fa-github mr-2"></i>
Github
</a>
</li>
</ul>
<label for="top-nav-toggle" class="icon-burger">
<div class="line bg-white"></div>
<div class="line bg-white"></div>
<div class="line bg-white"></div>
</label>
</nav>
</header>
<!-- main content -->
<main class="flex w-full" style="min-height: 100vh; top: 5rem">
<div
class="w-50-percent h-full p-16 flex justify-center align-items-center w-full"
>
<h1 class="text-5xl">Fusion CSS. A utility-first CSS framework.</h1>
</div>
<div
class="w-50-percent h-full w-full flex justify-center align-items-center"
>
<img
class="img-responsive p-20"
src="./css/images/hero.svg"
alt="hero-img"
/>
</div>
</main>
<!-- footer -->
<footer
class="bg-indigo-200 justify-center align-items-center flex flex-col p-5 fixed w-full z-50"
style="bottom: 0"
>
<div class="text-grey-700">
Made with <i class="fa-solid fa-code"></i> by
<a class="btn-text-underline text-hover-indigo-600">Ananya</a>
</div>
<ul class="links gap-2 flex mt-3">
<li>
<a
class="text-indigo-600 text-hover-white flex justify-center align-items-center text-lg"
href="https://twitter.com/AnanyaMadhu27"
>
<i class="fa-brands fa-twitter mr-2"></i>
</a>
</li>
<li>
<a
class="text-indigo-600 text-hover-white flex justify-center align-items-center text-lg"
href="https://github.com/Ananyamadhu08"
>
<i class="fab fa-github mr-2"></i>
</a>
</li>
<li>
<a
class="text-indigo-600 text-hover-white flex justify-center align-items-center text-lg"
href="https://www.linkedin.com/in/ananya-madhu-74479b206/"
>
<i class="fab fa-linkedin mr-2"></i>
</a>
</li>
</ul>
</footer>
</div>
</body>
</html>