-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
45 lines (37 loc) · 826 Bytes
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
@import url('https://fonts.googleapis.com/css2?family=Handjet:wght@500&family=Overpass:wght@400;700&family=Poppins:wght@200&family=Red+Hat+Display:wght@500;700;900&display=swap');
body{
background-color: black;
font-family: 'Poppins', sans-serif;
padding: 0%;
margin: 0%;
color: #ffffff;
}
section{
display: grid;
place-items: center;
align-content: center;
min-height: 100vh;
margin: 1rem;
}
.sock{
opacity: 0;
filter: blur(5px);
transform: translateX(-100%);
transition: 1s;
}
.show{
opacity: 1;
filter: blur(0);
transform: translateX(0);
}
.poster-container{
display: flex;
flex-direction: row;
}
.poster-container img {
width: 300px;
height: 450px;
object-fit: contain;
border-radius: 4px;
margin: 1rem;
}