-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
427 lines (353 loc) · 12.1 KB
/
index.html
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0">
<title></title>
<style>
body {
height: 100vh;
text-align: center;
background: linear-gradient(to bottom right, #2193B0 , #6DD5ED);
background-size: 200% 400%;
}
/*Menu Para Desktop*/
@media (max-width: 1281px) {
#centralize {
margin-left: 6%;
margin-right:2%;
}
body {
margin:0px -20px 0% 10px;
padding-left: 1%;
}
header {
display: flex;
align-items: center;
box-sizing: border-box;
height: 70px;
padding: 1rem;
justify-content: space-between;
width: 100%;
max-width: 980px;
}
#logo { /*Logo Vitor Oliveira*/
margin-top:30px;
font-size: 100px;
font: 400 50px/1.6 "Source Sans Pro",sans-serif;
}
#border {
color: #fff;
background: url(v.jpg);
background-size: 450px 450px ;
background-repeat: no-repeat;
width: 450px;
height: 450px;
border:solid 3px;
margin-left: auto;
margin-right: auto;
margin-top: 50px;
border-radius: 0px 20px 0px 20px;
}
#borda { /*Borda na imagem principal*/
border: none;
}
body ul { /*Lista*/
margin: 0 ;
padding: 0 ;
}
a { /*Links menu*/
color: white;
text-decoration: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
font: 370 18px/1.6 "Source Sans Pro",sans-serif;
}
/*redes sociais*/
#img1, #img3, #img4, #img5 {
height: 50px;
width: 50px;
}
#img2 {
height: 50px;
width: 55px;
}
p { /*parafrafos em geral*/
text-align: justify;
margin-left: 20px;
margin-right: 20px;
padding: 0 ;
color:#fff;
font: 300 200%/1.6 "Source Sans Pro",sans-serif;
}
iframe { /*yt videos*/
visibility: visible;
width: 799px;
height: 455px;
border-radius:10px;
}
h2 { /*titulo imagem dev*/
align-items: center;
text-align: center;
color:#fff;
font: 300 50px/1.6 "Source Sans Pro",sans-serif;
}
#menu {
display: flex;
height: 8px;
width: 90%;
max-width: 980px;
list-style: none;
gap: .7rem;/*Coloca um espaçamento e separa os itens*/
}
#menu a {
width: 100%;
max-width: 980px;
display: block;
padding-right: 70px;
font: 400 100%/1.6 "Source Sans Pro",sans-serif;
}
/*escondendo o botão*/
#btn-mobile {
background: #2193B0;
outline: none;
border:none;
}
h3 { /*palavras do Rodapé*/
font: 400 30px/1.6 "Source Sans Pro",sans-serif;
color: black;
padding: 0px;
margin: 0px;
padding-left: 5px;
padding-top: 10px;
padding-right: 10px;
}
mark {
background-color: #1488CC;
border-radius: 15px;
}
footer { /*Rodapé*/
/*esquerda left direita right*/
margin: 0;
padding-bottom: 20px;
background-color: #fff;
border-radius: 15px;
width: 99%;
height: 50px;
}
}
/*Menu para Versão Mobile*/
@media (max-width: 767px) {
#centralize {
margin-left: 0px;
margin-right: 0px;
}
body {
margin-left: 2px;
margin-right:8px;
padding-left: 1%;
}
#logo {
margin-top:5px;
font-weight: bold;
font: 300 35px/1.6 "Source Sans Pro",sans-serif;
}
#menu a { /*Links menu*/
height: 0px;
width: 20px;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
margin-left: 45%;
margin-top: 50px;
padding-top: 0px;
text-decoration: none;
}
#menu li a {
margin-top: 90px;
}
#img1,#img2, #img3, #img4, #img5{
height: 50px;
width: 50px;
}
#menu {
display: block;
position: absolute;
width: 100%;
top: 70px;
right: 0px;
margin-right: 28px;
border-radius: 15px;
background: linear-gradient(to bottom right, #2193B0 , #6DD5ED);
background-size: 200% 400%;
transition: .6s;
z-index: 1000;
visibility: hidden;
overflow-y: hidden;
}
#nav.active #menu {
height: calc(100vh - 70px);
visibility: visible;
overflow-y: auto;
}
/*botão hamburguer*/
#btn-mobile {
width: 100%;
max-width: 980px;
height: 40px;
outline:none;
margin-top:15px;
display: flex;
padding: .5rem 1rem;
font-size: 1rem;
gap: .5rem;
border-radius: 20px;
border: none;
background: none;
}
#pao {
width: 30px;
height: 3px;
border-top: 3px solid;
color:white;
}
#pao::after {
content: '';
display: block;
width: 30px;
height: 3px;
background: white;
margin-top: 5px;
transition: .3s;
position:relative;
background:currentColor;
}
#pao::before {
content: '';
display: block;
width: 30px;
height: 3px;
background: white;
margin-top: 5px;
transition: .2s;
position:relative;
background:currentColor;
}
#nav.active #pao {
border-top-color: transparent;
}
#nav.active #pao::before {
transform: rotate(135deg);
}
#nav.active #pao::after {
transform: rotate(-135deg);
top: -8px;
}
#border {
color: #fff;
background: url(iam.jpg);
background-size: 300px 300px ;
background-repeat: no-repeat;
width:300px;
height:300px;
border:solid 3px;
margin-left: auto;
margin-right: auto;
margin-top: 20px;
border-radius: 0px 20px 0px 20px;
}
p {
word-spacing: 1px;
text-align: justify;
margin-left: 20px;
margin-right: 20px;
padding: 0 ;
color:#fff;
font: 300 20px/1.6 "Source Sans Pro",sans-serif;
}
iframe { /*yt videos*/
visibility: visible;
width: 340px;
height: 210px;
border-radius:10px;
}
h2 {
align-items: center;
text-align: center;
color:#fff;
font: 300 28px/1.6 "Source Sans Pro",sans-serif;
}
h3 { /*palavras do Rodapé*/
font: 300 19px/1.6 "Source Sans Pro",sans-serif;
color: black;
padding: 0px;
margin: 0px;
padding-left: 5px;
padding-top: 4px;
padding-right: 10px;
}
mark {
background-color: #1488CC;
border-radius: 15px;
}
footer { /*Rodapé*/
margin-left: 20px;
padding-bottom: 20px;
background-color: #fff;
width: 90%;
height: 2%;
}
}
</style>
</head>
<body>
<header>
<a id="logo" href="https://github.com/VitorDev01">Vitor Oliveira</a>
<nav id="nav">
<button aria-label="Abrir Menu" id="btn-mobile" aria-haspopup="true" aria-controls="menu" aria-expanded="false"><span id="pao"></span>
</button>
<ul id="menu" role="menu">
<li><a href="https://github.com/VitorDev01"><img id="img1" src="github.png"></a></li>
<li><a href="mailto:[email protected]"><img id="img2" src="email.png"></a></li>
<li><a href="https://www.instagram.com/vitorkw89/"><img id="img3" src="insta.png"></a></li>
<li><a href="https://www.facebook.com/profile.php?id=100078322466753"><img id="img4" src="Facebook.png"></a></li>
<li><a href="https://vitordev01.github.io/blog-pagina-raiz/"><img id="img5" src="blog.png"></a></li>
</ul>
</nav>
</header>
<br>
<div id="border">
</div>
<div id="centralize">
<br>
</div>
<p>Tenho 22 anos atualmente me dedicando aos estudos em programação Front End, conhecimentos autodidata em HTML5 CSS3 e JavaScript, pretendo cursar Análise e Desenvolvimento De Sistemas, fã do raciocínio lógico amo café e estou sempre buscando aperfeiçoar meu inglês.</p>
<p>Tendo começado essa jornada na programação em 2019 com os professores Gustavo Guanabara e Bruno Campos dos canais Curso Em Video e CFB cursos.</p>
<p>Abaixo um pouco sobre essa profissão⬇</p>
<br> <!--videos do Yt-->
<h2>Desenvolvedor Front End</h2>
<iframe width="360" height="215" src="https://www.youtube.com/embed/WzZ1CSuFpb0" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<br>
<p>É responsável pela experiência do usuário dentro de uma aplicação web, é ele quem vai desenhar e desenvolver as páginas com as quais, posteriormente, o usuário irá interagir. </p>
<p>Tendo como principal Linguagem de programação o JavaScript uma das três principais tecnologias da <mark><a href="https://pt.m.wikipedia.org/wiki/World_Wide_Web">World Wide Web.</a></mark> A grande maioria dos sites usa, e todos os principais navegadores têm um mecanismo JavaScript dedicado para executá-lo.</p>
<br>
<!--comandos Javascript-->
<script>
const btnMobile = document.getElementById('btn-mobile');
function toggleMenu(event) {
if (event.type === 'touchstart') event.preventDefault();
const nav = document.getElementById('nav');
nav.classList.toggle('active');
const active = nav.classList.contains('active');
event.currentTarget.setAttribute('aria-expanded' , active);
if (active) {
event.currentTarget.setAttribute('aria-label' , 'Fechar Menu');
} else {
event.currentTarget.setAttribute('aria-label' , 'Abrir Menu');
}
}
btnMobile.addEventListener('click' , toggleMenu);
btnMobile.addEventListener('touchstart' , toggleMenu);
</script>
<footer>
<h3>© 2023 VitorDev01 | GitHub Pages</h3>
</footer>
<br>
</body>
</html>