-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
127 lines (105 loc) · 1.76 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
@font-face {
font-family: 'manifont';
src: url("./manifont-grotesk.webfont/manifont-grotesk_book.woff") format('woff');
}
html {
font-family: 'manifont';
}
html,
body {
overflow: hidden;
font-size: 4vw;
}
.container {
min-height: 100vh;
}
.words {
position: relative;
top: 50%;
transform: translateY(-50%);
text-align: center;
z-index: 1;
}
.words:hover {
cursor: text;
}
.pics {
max-width: 25vw;
z-index: 0;
display: block;
margin-left: auto;
margin-right: auto;
}
#bp {
margin-top: 28vh;
visibility: hidden;
}
#fp {
margin-top: 33vh;
visibility: hidden;
}
#dp {
margin-top: 38vh;
visibility: hidden;
}
#first {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 1fr;
gap: 0px 10px;
grid-template-areas:
"blurry fragmented disembodied";
}
#blurry {
color: transparent;
text-shadow: 0 0 8px #000;
grid-area: blurry;
}
#fragmented {
text-decoration: line-through;
text-decoration-color: white;
text-decoration-thickness: 1vh;
grid-area: fragmented;
pointer-events: none;
}
#disembodied {
padding-top: 1vh;
text-shadow: -1.5vh -1.5vh darkgrey;
color: grey;
grid-area: disembodied;
pointer-events: none;
}
#second {
margin-top: 5vh;
margin-bottom: 5vh;
text-align: center;
max-height: 100vh;
}
p {
margin: 0;
}
@keyframes fadeIn {
100% {
opacity: 1;
}
}
.fade {
animation: fadeIn 3s forwards;
opacity: 0;
}
.fade:nth-child(1) {
animation-delay: 1s;
}
.fade:nth-child(2) {
animation-delay: 4s;
}
.fade:nth-child(3) {
animation-delay: 7s;
}
.fade:nth-child(4) {
animation-delay: 10s;
}
#full {
margin-top: 5vh;
max-height: 60vh;
}