-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
51 lines (45 loc) · 784 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
41
42
43
44
45
46
47
48
49
50
51
@import url('https://fonts.googleapis.com/css2?family=Syne+Mono&display=swap');
body {
background-color: #eedfde;
font-family: 'Syne+Mono', sans-serif;
padding: 0;
margin: 0;
}
section {
display: grid;
place-items: center;
align-content: center;
min-height: 100vh;
}
.hidden {
opacity: 0;
filter: blur(5px);
transform: translateX(-100%);
transition: all 2s;
}
.show {
opacity: 1;
filter: blur(0);
transform: translateX(0);
}
@media (prefers-reduced-motion) {
.hidden {
transition: none;
}
}
img {
height: 140px;
width: 140px;
}
.avatar:nth-child(2) {
transition-delay: 200ms;
}
.avatar:nth-child(3) {
transition-delay: 400ms;
}
.avatar:nth-child(4) {
transition-delay: 600ms;
}
.avatar:nth-child(5) {
transition-delay: 800ms;
}