mirror of
https://github.com/kaboomserver/website.git
synced 2024-12-23 00:05:03 +00:00
Cleaning up CSS
This commit is contained in:
parent
dce5bbff3c
commit
a4fc7994ed
1 changed files with 10 additions and 12 deletions
|
@ -70,29 +70,27 @@ a:focus {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
}
|
|
||||||
|
|
||||||
#intro:before {
|
|
||||||
content: "";
|
|
||||||
position: absolute;
|
|
||||||
background: #000 url(/img/bg.svg) repeat bottom center scroll;
|
background: #000 url(/img/bg.svg) repeat bottom center scroll;
|
||||||
-webkit-background-size: cover;
|
-webkit-background-size: cover;
|
||||||
-moz-background-size: cover;
|
-moz-background-size: cover;
|
||||||
-o-background-size: cover;
|
-o-background-size: cover;
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
z-index: -1; /* Keep the background behind the content */
|
-webkit-filter: blur(5px);
|
||||||
height: 20%; width: 20%; /* Using Glen Maddern's trick /via @mente */
|
-moz-filter: blur(5px);
|
||||||
|
-o-filter: blur(5px);
|
||||||
/* don't forget to use the prefixes you need */
|
-ms-filter: blur(5px);
|
||||||
transform: scale(5);
|
filter: blur(5px);
|
||||||
transform-origin: top left;
|
|
||||||
filter: blur(2px);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#intro-body {
|
#intro-body {
|
||||||
display: table-cell;
|
display: table-cell;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
-webkit-filter: blur(0px)!important;
|
||||||
|
-moz-filter: blur(0px)!important;
|
||||||
|
-o-filter: blur(0px)!important;
|
||||||
|
-ms-filter: blur(0px)!important;
|
||||||
|
filter: blur(0px)!important;
|
||||||
}
|
}
|
||||||
|
|
||||||
#logo {
|
#logo {
|
||||||
|
|
Loading…
Reference in a new issue