initial commit
This commit is contained in:
commit
2e59f250f0
94 changed files with 952 additions and 0 deletions
56
css/style.css.old
Normal file
56
css/style.css.old
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue