This commit is contained in:
2021-04-13 23:57:33 +02:00
parent ef3c3d9b86
commit 789c73f9df
3 changed files with 70 additions and 0 deletions

31
50Days/day5/style.css Normal file
View File

@@ -0,0 +1,31 @@
@import url('https://fonts.googleapis.com/css2?family=Ubuntu');
* {
box-sizing: border-box;
}
body {
font-family: 'Ubuntu', sans-serif;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
overflow: hidden;
margin: 0;
}
.bg {
background: url('https://picsum.photos/1980') no-repeat center center/cover;
position: absolute;
top: -30px;
left: -30px;
width: calc(100vw + 60px);
height: calc(100vh + 60px);
z-index: -1;
filter: blur(70px);
}
.loading-text {
font-size: 50px;
color: white;
}