mirror of
https://gitlab.com/octospacc/octospacc.gitlab.io
synced 2025-01-08 14:51:17 +01:00
36 lines
595 B
CSS
36 lines
595 B
CSS
html, body {
|
|
background-image: url(../gif/bg/0.gif);
|
|
background-size: cover;
|
|
min-height: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
color: #EFEFFF;
|
|
}
|
|
|
|
.container {
|
|
background-color: rgba(0,0,0, 0.8);
|
|
height: 100%;
|
|
min-height: 100%;
|
|
}
|
|
|
|
.content {
|
|
padding: 5%;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
z-index: 2;
|
|
width: 80%;
|
|
}
|
|
|
|
.blur {
|
|
height: 100%;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
filter: blur(8px);
|
|
-webkit-filter: blur(8px);
|
|
-moz-filter: blur(8px);
|
|
-o-filter: blur(8px);
|
|
-ms-filter: blur(8px);
|
|
} |