-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
151 lines (139 loc) · 4.64 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!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" />
<meta name="theme-color" content="#0ea5e9" />
<title>Prefix</title>
<link rel="icon" type="image/x-icon" href="./assets/prefix (1).png" />
<link rel="stylesheet" href="/source/docsite.css" />
<link rel="stylesheet" href="./global.css" />
<script
src="https://kit.fontawesome.com/6f74bb313d.js"
crossorigin="anonymous"
></script>
<script
defer
src="https://cdn.jsdelivr.net/gh/sen-442b/prefix-ui@latest/globalScript.js"
></script>
</head>
<body>
<nav class="nav-bar">
<div class=" mob-nav-items padding-mdm display-none" id="ind-nav">
<div><button class="red-text-color border-radius-100" id="btn-close-ind-nav"><i class="fas fa-times-circle"></i>
</button></div>
<ul class=" flex-center gap-lrg flex-column">
<li class="dark-txt-light-bg padding-sml ">
<a href="./public/docsite.html">Documentation</a>
</li>
<li class="dark-txt-light-bg padding-sml ">
<a href="#about">About</a>
</li>
</ul>
</div>
</div>
<button class="btn pc-tab-display-none" id="btn-open-ind-nav">
<i class="fas fa-bars"></i>
</button>
<ul class="flex-gap-mdm">
<li class="nav-image-container">
<a href="../index.html" title="Home"><img
class="image-resp border-rad-20"
src="/assets/prefix (1).png"
alt="logo"
/>
</a>
</li>
<li>
<input
type="search"
name=""
class="form-input fluid-width"
placeholder="Search"
id=""
/>
</li>
</ul>
<ul class="flex-spc-btwn mob-display-none">
<li>
<a href="./public/docsite.html" class="cta-text-hover"
>Documentation</a
>
</li>
<li><a href="#about" class="cta-text-hover">About</a></li>
</ul>
<ul class="flex-spc-btwn">
<li title="GitHub">
<a
class="btn-icon alert-text"
href="https://github.com/Sen-442b/prefix-ui"
target="_blank"
rel="noopener noreferrer nofollow"
><i class="fa fa-github"></i
></a>
</li>
<li title="Twitter">
<a
class="btn-icon alert-text"
href="https://twitter.com/sen_shubhendu"
target="_blank"
rel="noopener noreferrer nofollow"
><i class="fa fa-twitter"></i
></a>
</li>
</ul>
</nav>
<main class="main-content flex-column flex-center">
<section class="main-content-info flex-column flex-center">
<h3 class="headline-typography fs-xlrg">Prefix</h3>
<p>Design beautiful and customizable user interfaces in no time </p>
<div class="flex-gap-mdm">
<button class="btn btn-cta btn-cta-anim">
<a href="public/docsite.html"> Get Started </a>
</button>
<button class="btn btn-outlined">
<a href="#installation">Installation</a>
</button>
</div>
</section>
<section id="installation" class="grid-col-2--50-50 mob-grid-col-1">
<div class="flex-column flex-center">
<h4 class="about fs-lrg">Installation</h4>
<p class="text-align-center fs-mdm">
Copy and paste the code snippet inside the
<code class="box-shadow-uni">< head ></code> tag of your html
</p>
</div>
<div class="flex-center">
<iframe
src="https://carbon.now.sh/embed/DOJYVOWSSxjRxy11Afjp"
class="text-align-center"
style="
width: 100%;
border: 0;
transform: scale(1);
overflow: hidden;
"
sandbox="allow-scripts allow-same-origin"
>
</iframe>
</div>
</section>
<section id="about" class="grid-col-2--50-50 mob-grid-col-1">
<div class="flex-column flex-center">
<h4 class="about fs-lrg">About</h4>
<p class="text-align-center fs-mdm">
Prefix is a lightweight CSS component library and utility based
framework for developers to seamlessly create interfaces.
</p>
</div>
<img
class="image-resp"
src="/assets/prefix (1).png"
alt="prefix-logo"
/>
</section>
</main>
</body>
</html>