Skip to content

Commit bd41656

Browse files
initial version
1 parent bfb571f commit bd41656

File tree

985 files changed

+98694
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

985 files changed

+98694
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
CHANGELOG
2+
3+
V 1.0.0
4+
Initial release

README.md

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,31 @@
1-
# azia-angular
2-
Free Angular Admin template
1+
# AziaAngular
2+
3+
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 7.2.1.
4+
5+
<h1>Demo</h1>
6+
7+
[![N|Solid](preview.jpg)](https://www.bootstrapdash.com/demo/azia-angular-free/preview/demo_1/dashboard)
8+
9+
## Development server
10+
11+
Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.
12+
13+
## Code scaffolding
14+
15+
Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.
16+
17+
## Build
18+
19+
Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `--prod` flag for a production build.
20+
21+
## Running unit tests
22+
23+
Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).
24+
25+
## Running end-to-end tests
26+
27+
Run `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protractortest.org/).
28+
29+
## Further help
30+
31+
To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md).

documentation/documentation.html

Lines changed: 312 additions & 0 deletions
Large diffs are not rendered by default.

documentation/script.js

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
(function($) {
2+
'use strict';
3+
4+
function qsa(sel) {
5+
return Array.apply(null, document.querySelectorAll(sel));
6+
}
7+
qsa(".code-editable").forEach(function (editorEl) {
8+
CodeMirror.fromTextArea(editorEl, {
9+
theme: "dracula",
10+
lineNumbers: true
11+
});
12+
});
13+
qsa(".code-non-editable").forEach(function (editorEl) {
14+
CodeMirror.fromTextArea(editorEl, {
15+
mode: "javascript",
16+
theme: "dracula",
17+
lineNumbers: true,
18+
readOnly: true,
19+
maxHighlightLength: 0,
20+
workDelay: 0
21+
});
22+
});
23+
24+
// The function actually applying the offset
25+
function offsetAnchor() {
26+
if (location.hash.length !== 0) {
27+
// window.scrollTo(window.scrollX, window.scrollY - 140);
28+
$("html").animate({ scrollTop: $(location.hash).offset().top - 15 }, 300);
29+
}
30+
}
31+
32+
// Captures click events of all <a> elements with href starting with #
33+
$(document).on('click', 'a[href^="#"]', function(event) {
34+
// Click events are captured before hashchanges. Timeout
35+
// causes offsetAnchor to be called after the page jump.
36+
window.setTimeout(function() {
37+
offsetAnchor();
38+
}, 0);
39+
});
40+
41+
// Set the offset when entering page with hash present in the url
42+
window.setTimeout(offsetAnchor, 0);
43+
44+
45+
})(jQuery);

documentation/style.css

Lines changed: 227 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,227 @@
1+
body {
2+
padding: 0;
3+
margin: 0;
4+
overflow-x: hidden;
5+
font-size: .875rem;
6+
font-family: 'Roboto', sans-serif;
7+
}
8+
9+
h1,
10+
h2,
11+
h3,
12+
h4,
13+
h5,
14+
h6 {
15+
font-weight: 500;
16+
line-height: 1;
17+
}
18+
19+
p {
20+
font-size: .875rem;
21+
margin-bottom: .5rem;
22+
line-height: 1.3rem;
23+
}
24+
25+
h1 {
26+
font-size: 3.125rem;
27+
}
28+
29+
h2 {
30+
font-size: 2.5rem;
31+
}
32+
33+
@media(max-width: 767px) {
34+
h2 {
35+
font-size: 1.9rem;
36+
}
37+
}
38+
39+
h3 {
40+
font-size: 1.875rem;
41+
}
42+
43+
h4 {
44+
font-size: 1.45rem;
45+
}
46+
47+
h5 {
48+
font-size: 1rem;
49+
}
50+
51+
h6 {
52+
font-size: .9375rem;
53+
}
54+
55+
.card {
56+
border-radius: 0;
57+
}
58+
59+
.card-body {
60+
padding: 2rem;
61+
}
62+
63+
@media (max-width: 991px) {
64+
.card-body {
65+
padding: 1.875rem 1.25rem;
66+
}
67+
}
68+
69+
.grid-margin {
70+
margin-bottom: 20px;
71+
}
72+
73+
.CodeMirror {
74+
font-size: .875rem;
75+
height: auto;
76+
text-align: left;
77+
min-height: auto;
78+
font-family: 'Roboto', sans-serif;
79+
line-height: 1.40em;
80+
padding: 10px;
81+
font-weight: 100;
82+
letter-spacing: .9px;
83+
margin-top: 1rem;
84+
margin-bottom: 1rem;
85+
}
86+
87+
.CodeMirror-scroll {
88+
min-height: auto;
89+
}
90+
91+
.documentation .left-sidebar {
92+
width: 260px;
93+
padding: 20px 30px;
94+
background-color: #f7f7f7;
95+
position: fixed;
96+
top: 0;
97+
left: 0;
98+
bottom: 0;
99+
overflow-y: auto;
100+
}
101+
102+
@media (max-width: 991px) {
103+
.documentation .left-sidebar {
104+
padding: 16px;
105+
}
106+
}
107+
108+
@media (min-width: 1200px) {
109+
.documentation .left-sidebar {
110+
width: 16.66666667%;
111+
}
112+
}
113+
114+
@media (min-width: 768px) {
115+
.documentation .left-sidebar {
116+
width: 25%;
117+
}
118+
}
119+
120+
.documentation .left-sidebar .logo-wrapper {
121+
margin-top: 1rem;
122+
margin-bottom: 1.6rem;
123+
}
124+
125+
.az-logo {
126+
font-weight: 700;
127+
font-size: 28px;
128+
font-family: Poppins,sans-serif;
129+
text-transform: lowercase;
130+
color: #5b47fb;
131+
letter-spacing: -1px;
132+
display: flex;
133+
align-items: center;
134+
position: relative;
135+
top: -2px;
136+
}
137+
138+
.documentation .left-sidebar .left-menu-title {
139+
margin-top: 1rem;
140+
}
141+
142+
.documentation .left-sidebar .left-menu {
143+
list-style-type: none;
144+
padding-left: 0;
145+
}
146+
147+
.documentation .left-sidebar .left-menu li {
148+
line-height: 2.2;
149+
position: relative;
150+
}
151+
152+
.documentation .left-sidebar .left-menu li a {
153+
text-decoration: none;
154+
color: #454545;
155+
cursor: pointer;
156+
padding-left: 18px;
157+
}
158+
159+
.documentation .left-sidebar .left-menu li a::before {
160+
content: '';
161+
width: 9px;
162+
height: 9px;
163+
border-radius: 50%;
164+
border: 1.5px solid #5b47fb;
165+
position: absolute;
166+
left: 0;
167+
top: 11px;
168+
}
169+
170+
.documentation .main-panel {
171+
padding: 40px 50px;
172+
margin-left: 0;
173+
}
174+
175+
@media (max-width: 991px) {
176+
.documentation .main-panel {
177+
padding: 40px 20px;
178+
}
179+
}
180+
181+
@media (min-width: 1200px) {
182+
.documentation .main-panel {
183+
margin-left: 16.66666667%;
184+
}
185+
}
186+
187+
@media (min-width: 768px) and (max-width: 1199px) {
188+
.documentation .main-panel {
189+
margin-left: 25%;
190+
}
191+
}
192+
193+
.credits .credit-list {
194+
list-style-type: none;
195+
padding-left: 20px;
196+
margin-bottom: 0;
197+
}
198+
199+
.credits .credit-list li {
200+
display: -webkit-box;
201+
display: -ms-flexbox;
202+
display: flex;
203+
position: relative;
204+
-ms-flex-wrap: wrap;
205+
flex-wrap: wrap;
206+
}
207+
208+
.credits .credit-list li a {
209+
overflow: hidden;
210+
text-overflow: ellipsis;
211+
}
212+
213+
.credits .credit-list li p {
214+
margin-right: 8px;
215+
}
216+
217+
.credits .credit-list li p::before {
218+
content: '';
219+
content: '';
220+
width: 8px;
221+
height: 8px;
222+
border-radius: 50%;
223+
border: 1.5px solid #d384f9;
224+
position: absolute;
225+
left: -17px;
226+
top: 6px;
227+
}

0 commit comments

Comments
 (0)