File "dividers.less"
Full Path: /home/ichhrkpd/public_html/images/less-eduPoint/shortcodes/dividers.less
File size: 1.03 KB
MIME-type: text/plain
Charset: utf-8
/*
* Shortcode: Dividers.less
* -----------------------------------------------
*/
.divider, .parallax {
background-repeat: repeat;
background-position: center center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
display: block;
position: relative;
overflow: hidden;
width: 100%;
}
/* -------- Parallax ---------- */
.parallax {
width: 100%;
height: 100%;
margin: 0 auto;
background-size: cover;
background-attachment: fixed;
background-repeat: repeat-y;
background-position: top center;
}
.mobile-parallax {
background-size: cover;
background-attachment: scroll;
background-position: center center;
}
.divider {
.container {
padding-top: 60px;
padding-bottom: 60px;
&.small-padding {
padding-top: 30px;
padding-bottom: 30px;
}
&.extra-padding {
padding-top: 180px;
padding-bottom: 180px;
}
}
}