2016-09-20 18:33:17 +00:00
|
|
|
|
2016-12-13 03:13:38 +00:00
|
|
|
//Hero Banner - Home Page
|
2016-09-20 18:33:17 +00:00
|
|
|
|
2016-12-13 03:13:38 +00:00
|
|
|
header {
|
|
|
|
height: 500px;
|
2016-09-20 18:33:17 +00:00
|
|
|
}
|
2017-01-06 08:06:40 +00:00
|
|
|
#particles-js {
|
|
|
|
width: 100%;
|
2016-12-13 03:13:38 +00:00
|
|
|
height: 500px;
|
|
|
|
overflow: hidden;
|
2017-01-06 08:06:40 +00:00
|
|
|
position: absolute;
|
|
|
|
background-color: transparent;
|
|
|
|
margin-top: -500px;
|
|
|
|
z-index: 20;
|
2016-09-20 18:33:17 +00:00
|
|
|
}
|
2017-01-06 08:06:40 +00:00
|
|
|
|
|
|
|
#particles-second{
|
2017-01-06 21:21:45 +00:00
|
|
|
width:100%;
|
|
|
|
max-width: 100%;
|
2017-01-06 08:06:40 +00:00
|
|
|
overflow: hidden;
|
2016-12-13 03:13:38 +00:00
|
|
|
position: absolute;
|
2017-01-06 08:06:40 +00:00
|
|
|
background-color: transparent;
|
|
|
|
height:100%;
|
|
|
|
z-index: -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.h-top {
|
|
|
|
height: 500px;
|
2016-12-13 03:13:38 +00:00
|
|
|
img {
|
|
|
|
&:first-of-type {
|
2017-01-06 08:06:40 +00:00
|
|
|
height: 420px;
|
|
|
|
position: absolute;
|
|
|
|
top:90px;
|
|
|
|
z-index: 10;
|
2016-12-13 03:13:38 +00:00
|
|
|
}
|
|
|
|
&:nth-child(3) {
|
|
|
|
height: 250px;
|
2017-01-06 08:06:40 +00:00
|
|
|
margin-top: 115px;
|
2016-12-13 03:13:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
h1 {
|
|
|
|
z-index: 10;
|
2017-01-06 08:06:40 +00:00
|
|
|
position: absolute;
|
|
|
|
margin-top: 400px;
|
2016-12-13 03:13:38 +00:00
|
|
|
}
|
2016-09-20 18:33:17 +00:00
|
|
|
}
|
|
|
|
|
2017-01-06 08:06:40 +00:00
|
|
|
//Hero Community
|
|
|
|
|
|
|
|
img.grid {
|
|
|
|
margin-top: -80px;
|
|
|
|
z-index: -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
img.ball {
|
|
|
|
position: absolute;
|
|
|
|
width: 35px;
|
|
|
|
margin-left: 240px;
|
|
|
|
margin-top: 20px;
|
|
|
|
-webkit-animation: spin 2s linear infinite both;
|
|
|
|
animation: spin 2s linear infinite both;
|
|
|
|
-moz-animation: spin 2s linear infinite both;
|
|
|
|
}
|
|
|
|
|
|
|
|
img.ball:nth-child(2){
|
|
|
|
width: 55px;
|
|
|
|
margin-left: 150px;
|
|
|
|
margin-top: 110px;
|
|
|
|
}
|
|
|
|
|
|
|
|
img.ball:nth-child(3){
|
|
|
|
width: 75px;
|
|
|
|
margin-left: 290px;
|
|
|
|
margin-top: 130px;
|
|
|
|
}
|
|
|
|
|
|
|
|
//Tutorials
|
|
|
|
|
|
|
|
.tutorials {
|
|
|
|
height: 200px;
|
|
|
|
margin-top: 25px;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tutorials .purp-shade {
|
|
|
|
line-height: 200px;
|
|
|
|
height: 200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tutorials h2 {
|
|
|
|
padding-top: 60px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tutorials #particles-second {
|
|
|
|
width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
position: absolute;
|
|
|
|
background-color: transparent;
|
|
|
|
max-height: 200px;
|
|
|
|
z-index: initial;
|
|
|
|
}
|
2016-12-13 03:13:38 +00:00
|
|
|
// Animation for Home Page
|
2016-09-20 18:33:17 +00:00
|
|
|
|
2016-12-13 03:13:38 +00:00
|
|
|
//Reflecting Diamond
|
2016-09-20 18:33:17 +00:00
|
|
|
|
2016-12-13 03:13:38 +00:00
|
|
|
.bright-animate{
|
|
|
|
animation: brightness 6s infinite;
|
|
|
|
-webkit-animation: brightness 6s infinite;
|
|
|
|
-moz-animation: brightness 6s infinite;
|
|
|
|
}
|
2016-09-20 18:33:17 +00:00
|
|
|
|
2016-12-13 03:13:38 +00:00
|
|
|
@-webkit-keyframes brightness {
|
|
|
|
0%, 100% {
|
|
|
|
-webkit-filter: brightness(none);
|
|
|
|
filter: brightness(none);
|
2016-09-20 18:33:17 +00:00
|
|
|
}
|
2016-12-13 03:13:38 +00:00
|
|
|
50% {
|
|
|
|
-webkit-filter: brightness(1.2);
|
|
|
|
filter: brightness(1.2);
|
2016-09-20 18:33:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-13 03:13:38 +00:00
|
|
|
@keyframes brightness {
|
|
|
|
0%, 100% {
|
|
|
|
-moz-filter: brightness(none);
|
|
|
|
filter: brightness(none);
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
-moz-filter: brightness(1.2);
|
|
|
|
filter: brightness(1.2);
|
2016-09-20 18:33:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-13 03:13:38 +00:00
|
|
|
//Warping Grid Animation//
|
2016-09-20 18:33:17 +00:00
|
|
|
|
2016-12-13 03:13:38 +00:00
|
|
|
.grid-animate{
|
|
|
|
-webkit-animation: g-animate 5s linear infinite both;
|
|
|
|
animation: g-animate 5s linear infinite both;
|
|
|
|
-moz-animation: g-animate 5s linear infinite both;
|
2016-09-20 18:33:17 +00:00
|
|
|
}
|
2016-12-13 03:13:38 +00:00
|
|
|
@-webkit-keyframes g-animate {
|
|
|
|
25% { -webkit-transform: rotateZ(10deg) scale3d(0.7, 1, 1.2);
|
|
|
|
transform: rotateZ(10deg) scale3d(0.7, 1, 1.2);
|
|
|
|
}
|
|
|
|
|
|
|
|
50% {-webkit-transform: scale3d(1.2, 0.7, 1);
|
|
|
|
transform: scale3d(1.2, 0.7, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
75% {-webkit-transform: rotateZ(10deg) scale3d(0.7, 1.2, 0.5);
|
|
|
|
transform: rotateZ(10deg) scale3d(0.7, 1.2, 0.5);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@keyframes g-animate {
|
|
|
|
25% { -moz-transform: rotateZ(10deg) scale3d(0.7, 1, 1.2);
|
|
|
|
transform: rotateZ(10deg) scale3d(0.7, 1, 1.2);
|
|
|
|
}
|
|
|
|
|
|
|
|
50% {-moz-transform: scale3d(1.2, 0.7, 1);
|
|
|
|
transform: scale3d(1.2, 0.7, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
75% {-moz-transform: rotateZ(10deg) scale3d(0.7, 1.2, 0.5);
|
|
|
|
transform: rotateZ(10deg) scale3d(0.7, 1.2, 0.5);
|
|
|
|
}
|
|
|
|
}
|
2017-01-06 08:06:40 +00:00
|
|
|
|
2017-01-06 21:21:45 +00:00
|
|
|
//Growing HR//
|
|
|
|
|
|
|
|
|
|
|
|
hr.first {
|
|
|
|
width: 0px;
|
|
|
|
}
|
2017-01-06 08:06:40 +00:00
|
|
|
|
|
|
|
.stretch{
|
2017-01-06 21:21:45 +00:00
|
|
|
-webkit-animation: grow 0.8s linear 1 both;
|
|
|
|
animation: grow 0.8s linear 1 both;
|
|
|
|
-moz-animation: grow 0.8s linear 1 both;
|
2017-01-06 08:06:40 +00:00
|
|
|
}
|
|
|
|
@-webkit-keyframes grow {
|
|
|
|
from { width:0px;}
|
|
|
|
to {width:150px;}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes grow {
|
|
|
|
from { width:0px;}
|
|
|
|
|
|
|
|
to {width:150px;}
|
|
|
|
|
|
|
|
}
|