This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.
Lateinicus/public/index.css

45 lines
666 B
CSS
Raw Normal View History

2018-08-15 19:15:12 +00:00
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;
}