-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (78 loc) · 2.68 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sumário</title>
<style>
/* Firefox */
body {
scrollbar-width: auto;
scrollbar-color: rgb(100, 100, 100) transparent;
}
/* Chrome, Edge, and Safari */
::-webkit-scrollbar {
width: 0.5rem;
height: 0.5rem;
margin-right: 0.75rem;
}
::-webkit-scrollbar-thumb {
background-color: rgb(100, 100, 100);
cursor: move;
}
::-webkit-scrollbar-track {
background-color: transparent;
border: none;
}
body {
font-family: Arial, Helvetica, sans-serif;
background: #041832 linear-gradient(236.85deg, #041832 27.26%, #3468A7 96.03%) no-repeat center/cover;
color: white;
height: 100vh;
margin: 0;
padding: 0;
}
body,
main {
display: flex;
justify-content: space-around;
align-items: center;
flex-direction: column;
}
main {
justify-content: center;
gap: 0.75rem;
}
footer {
align-items: center;
margin: 0.75rem 0;
}
a {
color: inherit;
}
</style>
</head>
<body>
<main>
<a href="./01-Portfolio/index.html">Portfolio</a>
<a href="./02-Logica/index.html">Lógica de programação com JavaScript</a>
<a href="https://github.com/djonibourscheid/curso-nova-geracao/tree/main/03-Arrays" target="_blank"
rel="noopener noreferrer">JavaScript: Arrays</a>
<a href="https://github.com/djonibourscheid/curso-nova-geracao/tree/main/04-Objetos" target="_blank"
rel="noopener noreferrer">JavaScript: Objetos</a>
<a href="./05-Manipulando-DOM/index.html">JavaScript: Manipuçando o DOM</a>
<a href="https://github.com/djonibourscheid/curso-nova-geracao/tree/main/06-Git-Github" target="_blank"
rel="noopener noreferrer">Git e GitHub</a>
<a href="./07-Armazenar-dados/index.html">JavaScript na Web: armazenando dados no navegador</a>
<a href="https://github.com/djonibourscheid/curso-nova-geracao/tree/main/08-Java-JRE-JDK" target="_blank"
rel="noopener noreferrer">Java JRE e JDK: compile e execute o seu programa</a>
<a href="https://github.com/djonibourscheid/curso-nova-geracao/tree/main/09-Java-OO" target="_blank"
rel="noopener noreferrer">Java Orientado a Objetos</a>
<a href="https://github.com/djonibourscheid/curso-nova-geracao/tree/main/10-Java-polimorfismo" target="_blank"
rel="noopener noreferrer">Java Polimorfismo</a>
</main>
<footer>Desenvolvido por
<a href="http://github.com/djonibourscheid" target="_blank" rel="noopener noreferrer">Djoni Bourscheid</a>
</footer>
</body>
</html>