-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
79 lines (59 loc) · 1.72 KB
/
styles.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
body::-webkit-scrollbar {
width: 12px; /* width of the entire scrollbar */
}
body::-webkit-scrollbar-track {
background: #333; /* color of the tracking area */
}
body::-webkit-scrollbar-thumb {
background-color: aliceblue; /* color of the scroll thumb */
border-radius: 20px; /* roundness of the scroll thumb */
border: 3px solid #333; /* creates padding around scroll thumb */
}
body {
width: 100%;
height: 100%;
background-color: #333
}
footer {
background-color: #333;
color: aliceblue;
}
nav.navbar {
position: fixed;
top: 0;
width: 100%;
z-index: 999; /* Para garantir que o menu fique acima de outros elementos */
}
main {
padding-top: 90px; /* Ajuste o valor conforme necessário */
background-color: #333;
color:aliceblue;
text-align: justify;
padding-bottom: 50px;
}
p {
margin: 0;
text-indent: 2em; /* Recuo do primeiro parágrafo */
line-height: 1.5; /* Espaçamento entre linhas */
font-family: 'Verdana'; /* Fonte típica de livro */
font-size: 16px; /* Tamanho de fonte */
margin-bottom: 1em;
}
h1 {
font-size: 2.5em; /* Tamanho do título h1 */
font-weight: bold; /* Pode ser alterado dependendo do estilo desejado */
text-align: center; /* Centralizando o título */
margin-bottom: 5px; /* Espaçamento abaixo do título */
}
h2 {
font-size: 1.5em; /* Tamanho do subtítulo h2 */
font-weight: bold; /* Pode ser alterado dependendo do estilo desejado */
text-align: center; /* Centralizando o subtítulo */
margin-bottom: 30px; /* Espaçamento abaixo do subtítulo */
}
header {
position: fixed;
top: 0;
width: 100%;
z-index: 999;
}