Skip to content

Commit a7480de

Browse files
asterisk
Co-Authored-By: Liam Arbuckle <allianceofdroidsla@gmail.com>
1 parent cc16bf9 commit a7480de

File tree

3,599 files changed

+11659
-22303
lines changed

Some content is hidden

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

3,599 files changed

+11659
-22303
lines changed

about.html

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

blog-post.html

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

blog.html

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

common.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
$(document).ready(function () {
2+
3+
$("#form").submit(function () {
4+
$.ajax({
5+
type: "POST",
6+
url: "mail.php",
7+
data: $(this).serialize()
8+
}).done(function () {
9+
$('.popup').removeClass("n-active-popup");
10+
$('.popup').addClass("active-popup");
11+
$("#form").trigger("reset");
12+
});
13+
return false;
14+
});
15+
16+
});

contact.html

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

css/animations.css

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
2+
@-webkit-keyframes fadeIn {
3+
from {
4+
opacity: 0;
5+
}
6+
7+
to {
8+
opacity: 1;
9+
}
10+
}
11+
12+
@keyframes fadeIn {
13+
from {
14+
opacity: 0;
15+
}
16+
17+
to {
18+
opacity: 1;
19+
}
20+
}
21+
22+
23+
@-webkit-keyframes fadeOut {
24+
from {
25+
opacity: 1;
26+
}
27+
28+
to {
29+
opacity: 0;
30+
}
31+
}
32+
33+
@keyframes fadeOut {
34+
from {
35+
opacity: 1;
36+
}
37+
38+
to {
39+
opacity: 0;
40+
}
41+
}
42+
43+
@-webkit-keyframes rotate {
44+
from {
45+
-webkit-transform: rotate(0deg);
46+
transform: rotate(0deg)
47+
}
48+
49+
to {
50+
-webkit-transform: rotate(360deg);
51+
transform: rotate(360deg)
52+
}
53+
}
54+
55+
@keyframes rotate {
56+
from {
57+
-webkit-transform: rotate(0deg);
58+
transform: rotate(0deg)
59+
}
60+
61+
to {
62+
-webkit-transform: rotate(360deg);
63+
transform: rotate(360deg)
64+
}
65+
}

css/animsition.min.css

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/bootstrap.min.css

Lines changed: 3 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/font-awesome.min.css

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/lity.css

Lines changed: 187 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,187 @@
1+
/*! Lity - v2.3.1 - 2018-04-20
2+
* http://sorgalla.com/lity/
3+
* Copyright (c) 2015-2018 Jan Sorgalla; Licensed MIT */
4+
.lity {
5+
z-index: 9990;
6+
position: fixed;
7+
top: 0;
8+
right: 0;
9+
bottom: 0;
10+
left: 0;
11+
white-space: nowrap;
12+
background: #fff;
13+
background-color: rgba(250,250,250 ,.9);
14+
outline: none !important;
15+
opacity: 0;
16+
-webkit-transition: opacity 0.3s ease;
17+
transition: opacity 0.3s ease;
18+
}
19+
.lity.lity-opened {
20+
opacity: 1;
21+
}
22+
.lity.lity-closed {
23+
opacity: 0;
24+
}
25+
.lity * {
26+
-webkit-box-sizing: border-box;
27+
box-sizing: border-box;
28+
}
29+
.lity-wrap {
30+
z-index: 9990;
31+
position: fixed;
32+
top: 0;
33+
right: 0;
34+
bottom: 0;
35+
left: 0;
36+
text-align: center;
37+
outline: none !important;
38+
}
39+
.lity-wrap:before {
40+
content: '';
41+
display: inline-block;
42+
height: 100%;
43+
vertical-align: middle;
44+
}
45+
.lity-loader {
46+
z-index: 9991;
47+
color: #fff;
48+
position: absolute;
49+
top: 50%;
50+
margin-top: -0.8em;
51+
width: 100%;
52+
text-align: center;
53+
font-size: 14px;
54+
font-family: Arial, Helvetica, sans-serif;
55+
opacity: 0;
56+
-webkit-transition: opacity 0.3s ease;
57+
transition: opacity 0.3s ease;
58+
}
59+
.lity-loading .lity-loader {
60+
opacity: 1;
61+
}
62+
.lity-container {
63+
z-index: 9992;
64+
position: relative;
65+
text-align: left;
66+
vertical-align: middle;
67+
display: inline-block;
68+
white-space: normal;
69+
max-width: 100%;
70+
max-height: 100%;
71+
outline: none !important;
72+
}
73+
.lity-content {
74+
z-index: 9993;
75+
width: 100%;
76+
-webkit-transform: scale(1);
77+
transform: scale(1);
78+
-webkit-transition: -webkit-transform 0.3s ease;
79+
transition: -webkit-transform 0.3s ease;
80+
transition: transform 0.3s ease;
81+
transition: transform 0.3s ease, -webkit-transform 0.3s ease;
82+
}
83+
.lity-loading .lity-content,
84+
.lity-closed .lity-content {
85+
-webkit-transform: scale(0.8);
86+
transform: scale(0.8);
87+
}
88+
.lity-content:after {
89+
content: '';
90+
position: absolute;
91+
left: 0;
92+
top: 0;
93+
bottom: 0;
94+
display: block;
95+
right: 0;
96+
width: auto;
97+
height: auto;
98+
z-index: -1;
99+
}
100+
.lity-close {
101+
z-index: 9994;
102+
width: 30px;
103+
height: 30px;
104+
position: fixed;
105+
right: 30px;
106+
top: 30px;
107+
-webkit-appearance: none;
108+
cursor: pointer;
109+
text-decoration: none;
110+
text-align: center;
111+
padding: 0;
112+
color: #292E32;
113+
font-style: normal;
114+
font-size: 30px;
115+
font-family: Arial, Baskerville, monospace;
116+
line-height: 35px;
117+
border: 0;
118+
background: none;
119+
outline: none;
120+
-webkit-box-shadow: none;
121+
box-shadow: none;
122+
}
123+
.lity-close::-moz-focus-inner {
124+
border: 0;
125+
padding: 0;
126+
}
127+
.lity-close:hover,
128+
.lity-close:focus,
129+
.lity-close:active,
130+
.lity-close:visited {
131+
text-decoration: none;
132+
text-align: center;
133+
padding: 0;
134+
color: #292E32;
135+
font-style: normal;
136+
font-size: 35px;
137+
font-family: Arial, Baskerville, monospace;
138+
line-height: 35px;
139+
border: 0;
140+
background: none;
141+
outline: none;
142+
-webkit-box-shadow: none;
143+
box-shadow: none;
144+
}
145+
.lity-close:active {
146+
top: 30px;
147+
}
148+
/* Image */
149+
.lity-image img {
150+
max-width: 100%;
151+
display: block;
152+
line-height: 0;
153+
border: 0;
154+
}
155+
/* iFrame */
156+
.lity-iframe .lity-container,
157+
.lity-youtube .lity-container,
158+
.lity-vimeo .lity-container,
159+
.lity-facebookvideo .lity-container,
160+
.lity-googlemaps .lity-container {
161+
width: 100%;
162+
max-width: 964px;
163+
}
164+
.lity-iframe-container {
165+
width: 100%;
166+
height: 0;
167+
padding-top: 56.25%;
168+
overflow: auto;
169+
pointer-events: auto;
170+
-webkit-transform: translateZ(0);
171+
transform: translateZ(0);
172+
-webkit-overflow-scrolling: touch;
173+
}
174+
.lity-iframe-container iframe {
175+
position: absolute;
176+
display: block;
177+
top: 0;
178+
left: 0;
179+
width: 100%;
180+
height: 100%;
181+
-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
182+
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
183+
background: #000;
184+
}
185+
.lity-hide {
186+
display: none;
187+
}

0 commit comments

Comments
 (0)