57 lines
2.1 KiB
CSS
57 lines
2.1 KiB
CSS
|
|
body {
|
||
|
|
height: 100%;
|
||
|
|
background-color: #ffffff;
|
||
|
|
background-image: url("../images/overlay.png"), -moz-linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35));
|
||
|
|
background-image: url("../images/overlay.png"), -webkit-linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35));
|
||
|
|
background-image: url("../images/overlay.png"), -ms-linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35));
|
||
|
|
background-image: url("../images/overlay.png"), linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35));
|
||
|
|
background-repeat: repeat, no-repeat, no-repeat;
|
||
|
|
background-size: 100px 100px, cover, cover;
|
||
|
|
background-position: top left, center center, bottom center;
|
||
|
|
background-attachment: fixed, fixed, fixed;
|
||
|
|
}
|
||
|
|
|
||
|
|
body:after {
|
||
|
|
content: '';
|
||
|
|
display: block;
|
||
|
|
position: fixed;
|
||
|
|
top: 0;
|
||
|
|
left: 0;
|
||
|
|
width: 100%;
|
||
|
|
height: inherit;
|
||
|
|
opacity: 0;
|
||
|
|
z-index: 1;
|
||
|
|
background-color: #ffffff;
|
||
|
|
background-image: url("../images/overlay.png"), -moz-linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35));
|
||
|
|
background-image: url("../images/overlay.png"), -webkit-linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35));
|
||
|
|
background-image: url("../images/overlay.png"), -ms-linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35));
|
||
|
|
background-image: url("../images/overlay.png"), linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35));
|
||
|
|
background-repeat: repeat, no-repeat;
|
||
|
|
background-size: 100px 100px, cover;
|
||
|
|
background-position: top left, center center;
|
||
|
|
-moz-transition: opacity 1.75s ease-out;
|
||
|
|
-webkit-transition: opacity 1.75s ease-out;
|
||
|
|
-ms-transition: opacity 1.75s ease-out;
|
||
|
|
transition: opacity 1.75s ease-out;
|
||
|
|
}
|
||
|
|
|
||
|
|
body.is-loading:after {
|
||
|
|
opacity: 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
.bg-secondary {
|
||
|
|
background-color: #fff !important;
|
||
|
|
background-image: url("../images/overlay.png"), -moz-linear-gradient(60deg, rgba(255, 165, 150, 0.5) 5%, rgba(0, 228, 255, 0.35));
|
||
|
|
background-attachment: fixed;
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
.jumbotron{
|
||
|
|
background-color: transparent;
|
||
|
|
}
|
||
|
|
|
||
|
|
.category{
|
||
|
|
background-color: white;
|
||
|
|
}
|