-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
55 lines (45 loc) · 1.16 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
@import url('https://fonts.googleapis.com/css?family=Poppins:400,700&display=swap');
body {
background-color: #131316;
font-family: 'Poppins', sans-serif;
color: #ffffff;
padding: 0;
margin: 0;
overflow-x: hidden;
}
section {
display: grid;
place-items: center;
align-content: center;
min-height: 100dvh;
}
.hidden {
opacity: 0;
filter: blur(1rem);
transition: all 1s;
}
.left {
transform: translateX(-100%);
}
.right {
transform: translateX(100%);
}
.show {
opacity: 1;
filter: blur(0);
transform: translateX(0);
}
.logos {
display: flex;
}
.logo:nth-child(1) {
transition-delay: 200ms;
margin-right: 20px;
}
.logo:nth-child(2) {
transition-delay: 400ms;
margin-right: 20px;
}
.logo:nth-child(3) {
transition-delay: 600ms;
}