inspec/www/source/stylesheets/_homepage.scss

192 lines
3.3 KiB
SCSS
Raw Normal View History

2016-09-20 18:33:17 +00:00
//Hero Banner - Home Page
2016-09-20 18:33:17 +00:00
header {
2017-01-07 00:03:24 +00:00
height: 440px;
2016-09-20 18:33:17 +00:00
}
#particles-js {
width: 100%;
height: 500px;
overflow: hidden;
position: absolute;
background-color: transparent;
margin-top: -500px;
z-index: 20;
2016-09-20 18:33:17 +00:00
}
#particles-second{
2017-01-06 21:21:45 +00:00
width:100%;
max-width: 100%;
overflow: hidden;
position: absolute;
background-color: transparent;
height:100%;
z-index: -1;
}
.h-top {
2017-01-07 00:03:24 +00:00
height: 440px;
img {
&:first-of-type {
height: 420px;
2017-01-07 00:03:24 +00:00
position: absolute;
top:70px;
z-index: 10;
}
&:nth-child(3) {
2017-01-07 00:03:24 +00:00
height: 230px;
margin-top: 110px;
}
}
h1 {
z-index: 10;
position: absolute;
2017-01-07 00:03:24 +00:00
margin-top: 355px;
}
2016-09-20 18:33:17 +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;
}
// Animation for Home Page
2016-09-20 18:33:17 +00:00
//Reflecting Diamond
2016-09-20 18:33:17 +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
@-webkit-keyframes brightness {
0%, 100% {
-webkit-filter: brightness(none);
filter: brightness(none);
2016-09-20 18:33:17 +00:00
}
50% {
-webkit-filter: brightness(1.2);
filter: brightness(1.2);
2016-09-20 18:33:17 +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
}
}
//Warping Grid Animation//
2016-09-20 18:33:17 +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
}
@-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 21:21:45 +00:00
//Growing HR//
hr.first {
width: 0px;
}
.stretch{
2017-01-07 00:03:24 +00:00
-webkit-animation: grow 0.6s linear 1 both;
animation: grow 0.6s linear 1 both;
-moz-animation: grow 0.6s linear 1 both;
}
@-webkit-keyframes grow {
from { width:0px;}
to {width:150px;}
}
@keyframes grow {
from { width:0px;}
to {width:150px;}
}