Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add styles for baground and blur effect
  • Loading branch information
tajulafreen committed Dec 13, 2023
commit 55e7ea02563887d95212e283a24309d9b764744e
29 changes: 29 additions & 0 deletions BluringImage/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
* {
box-sizing: border-box;
}

body {
font-family: sans-serif;
margin: 0;
height: 100vh;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
}

.bg {
background: url('https://w0.peakpx.com/wallpaper/799/526/HD-wallpaper-kittens-kitten-cat-love-sleep-animal-couple.jpg') no-repeat center center/cover;
position: absolute;
top: -30px;
left: -30px;
width: calc(100vw + 60px);
height: calc(100vh + 60px);
z-index: -1;
filter: blur(0);
}

.loading-text {
font-size: 150px;
color: black;
}