-
Notifications
You must be signed in to change notification settings - Fork 0
/
about-style.css
209 lines (185 loc) · 3.34 KB
/
about-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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
body{
margin: 0;
padding: 0;
/*font-family: 'Arvo', 'Josefin Sans', 'Rokkitt', 'Sanchez';
font-family: 'Fira Mono', 'Noto Sans Mono', 'Sometype Mono', monospace;
font-family: 'Sometype Mono', monospace;
font-family: 'Noto Sans Mono', 'Sometype Mono', monospace;*/
}
#about-link {
color: var(--yellow);
}
#email-link {
color: var(--magenta);
font-weight: bold;
}
#email-link:hover {
color: var(--yellow);
}
#toilet-model {
display: none;
}
p{
font-weight: 250;
line-height: 3rem;
}
h1{
font-size: 6rem;
font-family: Montserrat;
}
h2{
font-size: 5rem;
font-family: Montserrat;
}
h3{
font-size: 4rem;
font-family: Montserrat;
}
h4{
margin: 2rem 0rem;
font-weight: 600;
padding: 0;
font-size: 2.4rem;
font-weight: 300;
position: relative;
transition: top 1s, opacity 2s;
font-family: 'Noto Sans Mono', 'Sometype Mono', monospace;
}
h5{
margin: 1.6rem;
font-weight: 400;
}
div{
font-size: 1.6rem;
}
.frag-container{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.frag{
font-size: 9rem;
opacity: 0%;
}
.about{
display: flex;
justify-content: center;
padding: 0% 6%;
margin-bottom: 240px;
}
.about-container-1{
color: var(--text-color);
width: 60%;
max-width: 680px;
padding: 10px 40px;
animation: fadeIn ease 3s;
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.about-container-2{
width: 40%;
height: calc(600px / 1vw);
max-width: 600px;
flex-direction: column;
align-content: center;
justify-content: flex-start;
}
#list-container{
margin: 0 auto;
width: 80%;
align-self: center;
animation: fadeIn ease 3s;
padding: 25px 7% 3rem 7%;
border-bottom: 1px solid var(--text-color);
}
#list-cols{
display: flex;
align-items: flex-start;
justify-content: space-between;
}
.icon{
color: var(--text-color);
font-size: 3rem;
margin-bottom: 2rem;
transition: color .5 linear;
cursor: pointer;
}
.icon:hover{
color: var(--magenta);
}
#icon-box{
position: relative;
top: 0;
left: 0;
width: 80%;
height: 18%;
margin: auto;
display: flex;
align-items: flex-end;
justify-content: space-between;
transition: 1.5s ease;
z-index: 100;
border-bottom: 1px solid var(--text-color);
}
#alien{
position: relative;
top: 6.2rem;
left: 15rem;
animation: frag1 ease 3s 2s 1 normal forwards;
}
#cat{
position: relative;
top: 5.2rem;
left: 8.4rem;
animation: frag1 ease 3s 1.5s 1 normal forwards;
}
@keyframes frag1{
100%{
opacity: 100%;
}
}
#c1{
animation: icon ease 2.5s 0s 1;
transition: .5s ease;
}
@keyframes icon{
0%{
transform: translateY(0px);
}
55%{
transform: translateY(-100px);
}
65%{
transform: translateY(0px);
}
75%{
transform: translateY(-40px);
}
90%{
transform: translateY(-40px);
}
95%{
transform: translateY(5px);
}
100%{
transform: translateY(0px);
}
}
#c2{
animation: icon ease 2.5s .2s 1;
transition: .5s ease;
}
#c3{
animation: icon ease 2.5s .4s 1;
transition: .5s ease;
}
#c4{
animation: icon ease 2.5s .6s 1;
transition: .5s ease;
}