-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
182 lines (165 loc) · 5.49 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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<!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="https://unpkg.com/[email protected]/css/boxicons.min.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="/style.css" />
<title>Magnificent UI</title>
</head>
<body>
<header class="header flex">
<i class='bx bx-menu hamburger_icon'></i>
<div class="brand__text grid-center">Magnificent UI</div>
<div class="social__handles">
<a class="social__links theme__toggler">
<i class="bx bxs-moon"></i>
</a>
<a href="#" class="social__links display--modifier">
<i class="bx bxl-twitter"></i>
</a>
<a href="#" class="social__links display--modifier">
<i class="bx bxl-linkedin-square"></i>
</a>
<a href="" class="social__links">
<i class="bx bxl-github"></i>
</a>
</div>
</header>
<nav class="nav flex-col-align-center">
<h1 class="h4 nav__head">Get Started</h1>
<ul class="nav__items flex-col-align-center">
<li class="nav__list">
<a class="nav__links nav_link--selected" href="/src/components/usage/usage.html">Usage</a>
</li>
<li class="nav__list"><a class="nav__links" href="/src/components/typography/typography.html">Typography</a></li>
</ul>
<h1 class="h4 nav__head">Components</h1>
<ul class="nav__items flex-col-align-center">
<li class="nav__list">
<a
class="nav__links"
href="/src/components/avatar/avatar.html"
>Avatar</a
>
</li>
<li class="nav__list">
<a class="nav__links" href="/src/components/badge/badge.html"
>Badge</a
>
</li>
<li class="nav__list">
<a class="nav__links" href="/src/components/alert/alert.html"
>Alert</a
>
</li>
<li class="nav__list">
<a class="nav__links" href="/src/components/button/button.html"
>Button</a
>
</li>
<li class="nav__list">
<a class="nav__links" href="/src/components/card/card.html">Card</a>
</li>
<li class="nav__list">
<a class="nav__links" href="/src/components/input/input.html"
>Input</a
>
</li>
<li class="nav__list">
<a class="nav__links" href="/src/components/image/image.html"
>Image</a
>
</li>
<li class="nav__list">
<a class="nav__links" href="/src/components/snackbar/snackbar.html"
>Snackbar</a
>
</li>
<li class="nav__list">
<a class="nav__links" href="/src/components/lists/lists.html"
>Lists</a
>
</li>
<li class="nav__list">
<a class="nav__links" href="/src/components/modal/modal.html"
>Modal</a
>
</li>
<li class="nav__list">
<a class="nav__links" href="/src/components/rating/rating.html"
>Ratings</a
>
</li>
<li class="nav__list">
<a class="nav__links" href="/src/components/grid/grid.html"
>Grid</a
>
</li>
<li class="nav__list">
<a class="nav__links" href="/src/components/navigation/navigation.html"
>Navigation</a
>
</li>
<li class="nav__list">
<a class="nav__links" href="/src/components/slider/slider.html"
>Slider</a
>
</li>
</ul>
</nav>
<!-- Main Start -->
<main class="main">
<!-- ----Introduction----- -->
<h2 class="h2 m_doc__heading">Introduction</h2>
<p class="m_doc__para">
Magnificent UI is a free, open source, and lightweight component library that allows developers to build sophisticated and minimalistic user interfaces for their websites.
</p>
<br>
<!-- ----USAGE----- -->
<h2 class="h2 m_doc__heading">Usage</h2>
<p class="m_doc__para">
Installing Magnificent UI is very easy! </br>
There are two ways in which you could do so.
<br>
<br>
</p>
<h2 class="h3 m_doc__heading">1. Import using HTML TAG</h2>
<p class="m_doc__para">
Just hit the <strong>"copy"</strong> button in below code snippet container and <strong>"paste"</strong> it in head tag of your HTML document above all your other stylesheets.
</p>
<!-- SNIPPET CONTAINER -->
<div class="snippet_container">
<script
type="text/plain"
class="line-numbers language-css snippet_container__script"
>
<link rel="stylesheet" href="https://magnificentui.netlify.app/src/magnificent.css">
</script>
</div>
<h2 class="h3 m_doc__heading">2. Import using CSS Import</h2>
<p class="m_doc__para">
Just hit the <strong>"copy"</strong> button in below code snippet container and <strong>"paste"</strong> it in your CSS stylesheet above all your other defined styles.
</p>
<!-- SNIPPET CONTAINER -->
<div class="snippet_container">
<script
type="text/plain"
class="line-numbers language-css snippet_container__script"
>
@import url("https://magnificentui.netlify.app/src/magnificent.css");
</script>
</div>
<p class="units_instruction">
<span><b>Note: </b></span><span>Used 10px as root font size.</span>
</p>
</main>
<script src="/src/javascript/prism.js"></script>
<script src="/src/javascript/darkmodetoggler.js"></script>
<script src="/src/javascript/app.js"></script>
</body>
</html>