45 lines
666 B
CSS
45 lines
666 B
CSS
|
body {
|
||
|
background-image: ;
|
||
|
background-size: cover;
|
||
|
}
|
||
|
|
||
|
.content:before {
|
||
|
content: "";
|
||
|
position: fixed;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
z-index: -1;
|
||
|
|
||
|
display: block;
|
||
|
background-image: url("assets/stock.jpg");
|
||
|
background-size: cover;
|
||
|
width: 1920px;
|
||
|
height: 1080px;
|
||
|
|
||
|
-webkit-filter: blur(5px);
|
||
|
-moz-filter: blur(5px);
|
||
|
-o-filter: blur(5px);
|
||
|
-ms-filter: blur(5px);
|
||
|
filter: blur(5px);
|
||
|
}
|
||
|
|
||
|
.content {
|
||
|
position: fixed;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
z-index: 0;
|
||
|
margin-left: 20px;
|
||
|
margin-right: 20px;
|
||
|
}
|
||
|
|
||
|
.card-body {
|
||
|
margin: 10px;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.center {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
}
|