-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
307 lines (307 loc) · 6.82 KB
/
index.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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
body,html {
padding:0px;
margin:0px;
font-family: 'Comfortaa', cursive;
font-weight:bold;
color:#fff;
background:rgb(0, 0, 0);
scroll-behavior: smooth;
}
#loading {
width: 100vw;
height: 100vh;
position: fixed;
background: #000;
z-index: 999;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
#spinner {
animation: rotate 0.56s infinite linear;
width:60px;
height:60px;
border:6px solid #fff;
border-bottom:6px solid #000;
border-radius:50%;
margin:0;
}
@keyframes rotate {
0% {transform: rotate(0deg);}
100% {transform: rotate(360deg);}
}
#header {
width:80%;
padding:4% 10%;
text-align:center;
position:absolute;
transition:0.6s ease-in-out;
}
#header div {
display:block;
}
#title {
font-size:40px;
background-image: linear-gradient(to left, #FF416C 0%, #FF4B2B 100%);
-webkit-background-clip:text;
background-clip:text;
-webkit-text-fill-color: transparent;
background-size:500% 500% !important;
-webkit-animation: Gradient 20s ease infinite;
-moz-animation: Gradient 20s ease infinite;
-o-animation: Gradient 20s ease infinite;
animation: Gradient 20s ease infinite;
font-family: 'Comfortaa', cursive;
}
#links {
margin:40px 0px;
transition:0s ease-in-out;
color:#fff;
}
#links a {
margin:0px 30px;
color:inherit;
text-decoration:none;
transition:0.4s ease-in-out;
padding:5px 8px;
border-bottom:2px solid transparent;
}
#links a:hover {
border-bottom:2px solid #fff;
}
#middle {
width:100%;
height:80vh;
background:linear-gradient(0deg,rgba(0,0,0,1),rgba(0,0,0,0)),url("compressed.jpg") center center fixed;
background-size:100% auto;
background-repeat:no-repeat;
color:white;
display:flex;
justify-content:center;
flex-direction:column;
transition:1s ease-in-out;
padding-top:20vh;
}
#tagline {
font-size:50px;
width:60%;
}
#portfolio {
width:80%;
padding:2% 10%;
}
#portfolio div h1 {
font-size:40px;
background-image: linear-gradient(to left, #FF416C 0%, #FF4B2B 100%);
-webkit-background-clip:text;
background-clip:text;
-webkit-text-fill-color: transparent;
background-size:500% 500% !important;
-webkit-animation: Gradient 20s ease infinite;
-moz-animation: Gradient 20s ease infinite;
-o-animation: Gradient 20s ease infinite;
animation: Gradient 20s ease infinite;
font-family: 'Comfortaa', cursive;
}
#skills {
margin:4vh 0px !important;
padding:2vh 0px !important;
}
#work {
margin:4vh 0px !important;
padding:2vh 0px !important;
}
#contact {
margin:4vh 0px !important;
padding:2vh 0px !important;
}
#contact form {
width:100%;
}
#contact form input {
width:46%;
margin:20px 1%;
background:transparent;
border:0px;
border-bottom:2px solid rgba(255,255,255,0.5);
padding:8px 10px;
font-family: 'Comfortaa', cursive;
font-size:18px;
transition:0.4s ease-in-out;
color:#fff;
}
#contact form textarea {
width:96%;
margin:20px 1%;
padding:8px 10px;
border:0px;
border-bottom:2px solid rgba(255,255,255,0.5);
padding:8px 10px;
font-family: 'Comfortaa', cursive;
font-size:18px;
background:transparent;
resize:none;
transition:0.4s ease-in-out;
color:#fff;
}
#contact form input:focus {
outline:none;
border-bottom:2px solid rgba(255,255,255,1);
}
#contact form textarea:focus {
outline:none;
border-bottom:2px solid rgba(255,255,255,1);
}
::placeholder {
color:#fff;
}
.btn_one {
color:white;
padding:10px 40px;
border-radius:50px;
border:2px solid #fff;
font-size:18px;
font-family: 'Comfortaa', cursive;
font-weight:bold;
background:transparent;
transition:0.4s ease-in-out;
margin:30px 10px;
}
.btn_one:hover {
background:white;
cursor:pointer;
color:#000;
}
.project div {
font-weight:normal;
}
.btn_two {
color:#000;
padding:10px 40px;
border-radius:50px;
border:2px solid #fff;
font-size:18px;
font-family: 'Comfortaa', cursive;
font-weight:bold;
background:#fff;
transition:0.4s ease-in-out;
margin:30px 10px;
}
.btn_two:hover {
background:transparent;
cursor:pointer;
color:#fff;
}
#details {
margin:6vh 0px;
}
.btn_social {
font-size:18px;
color:#fff;
margin:40px 20px;
padding:15px 18px;
border-radius:50%;
background:#000;
transition:0.4s ease-in-out;
}
.btn_social:hover {
color:#000;
background:#fff;
cursor:pointer;
}
@media (max-width: 900px){
#header {
width:94%;
padding:15% 3%;
}
#title {
font-size:30px;
}
#links {
margin:30px 0px;
}
#links a {
margin:0px;
}
#middle {
width:100%;
border-radius:0px;
height:80vh;
background-size:cover;
}
#tagline {
width:90%;
font-size:30px;
}
.btn_one {
font-size:14px;
padding:8px 20px;
}
.btn_two {
font-size:14px;
padding:8px 20px;
}
#contact form input {
width:92%;
}
#contact form textarea {
width:92%;
}
.btn_social {
font-size:14px;
margin:10px;
padding:10px 11px;
}
}
#footer {
width:100%;
padding:10vh 0px;
text-align:center;
font-weight:bold;
}
#footer a {
font-size:18px;
background-image: linear-gradient(to left, #FF416C 0%, #FF4B2B 100%);
-webkit-background-clip:text;
background-clip:text;
-webkit-text-fill-color: transparent;
background-size:500% 500% !important;
-webkit-animation: Gradient 20s ease infinite;
-moz-animation: Gradient 20s ease infinite;
-o-animation: Gradient 20s ease infinite;
animation: Gradient 20s ease infinite;
font-family: 'Comfortaa', cursive;
text-decoration:none;
}
button:focus {
outline:none;
}
::-webkit-scrollbar {
width:5px;
height:5px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #000;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
@-webkit-keyframes Gradient {
0% {background-position: 0% 50%}
50% {background-position: 100% 50%}
100% {background-position: 0% 50%}
}
@-moz-keyframes Gradient {
0% {background-position: 0% 50%}
50% {background-position: 100% 50%}
100% {background-position: 0% 50%}
}
@keyframes Gradient {
0% {background-position: 0% 50%}
50% {background-position: 100% 50%}
100% {background-position: 0% 50%}
}