Skip to content

Commit 6e7c2e5

Browse files
committed
Create style.css
1 parent 8d6e9fc commit 6e7c2e5

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
* {
2+
box-sizing: border-box;
3+
}
4+
5+
body {
6+
display: flex;
7+
flex-direction: column;
8+
align-items: center;
9+
justify-content: center;
10+
height: 100vh;
11+
overflow: hidden;
12+
margin: 0;
13+
}
14+
15+
.background {
16+
background: url('https://images.unsplash.com/photo-1556745757-8d76bdb6984b')
17+
no-repeat center center/cover;
18+
position: absolute;
19+
top: -20px;
20+
bottom: -20px;
21+
left: -20px;
22+
right: -20px;
23+
z-index: -1;
24+
filter: blur(20px);
25+
}

0 commit comments

Comments
 (0)