-
Notifications
You must be signed in to change notification settings - Fork 0
/
estilo.css
163 lines (132 loc) · 2.58 KB
/
estilo.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
/* GERAL */
body {background-color: #C0C0C0;} /*cor de fundo da página*/
/* HEADER */
.banner img{width: 105%; height: 30%; margin-bottom: 0; margin-top: -5px;margin-left: -44px;} /*propriedades do banner*/
/* MAIN */
/*propriedades da box com o texto*/
.intro{
max-width: 70vw;
display: flexbox;
margin-left: 18%;
}
.intro p{
background-color: #C0C0C0;
padding: 20px;
margin: 10px;
text-align: justify;
font-family: 'helvetica';
font-size: 18px;
line-height: 25px;
margin-bottom: -2rem;
}
.intro p a:hover{color: #b13030}
/*propriedade da lista de conteúdos*/
.conteudo ul{
list-style-type: square;
padding: 3rem;
}
.conteudo ul li{
padding: 5px;
font-family: Helvetica;
font-size: 16px;
}
.conteudo ul li a:hover{
color: #b13030;
}
.conteudo h2{
position: absolute;
font-family: rockwell;
font-size: 30px;
}
.conteudo{
display: flex;
flex-direction: row;
justify-content: center;
border-top: 2px solid #800000;
margin-bottom: -3rem;
padding-right: 18%;
}
/* ARTICLE */
article{
display: flex;
align-items: baseline;
border-top: 2px solid #800000;
margin-bottom: -1.5rem;
justify-content: center;
padding-left: 8%;
}
article ul li a:hover{ color: #b13030}
/*propriedades da lista de exercicios*/
.exerc{
margin: 1rem;
}
.exerc h3{
padding: 2px;
font-family: rockwell;
font-size: 30px
}
.exerc ul{
margin-top: -5px;
padding: revert;
list-style-type: circle;
}
.exerc ul li{
padding: 5px;
font-family: Helvetica;
font-size: 16px
}
/*propriedades da lista dos livros*/
.livros h2{margin-bottom: 0;}
.livros{
margin: 1rem;
}
.livros h3{
margin-bottom: 0;
font-family: rockwell;
font-size: 30px;
}
.livros ul{
padding: 20px;
margin: 0;
}
.livros ul li{
padding: 5px;
font-family: Helvetica;
font-size: 16px;
}
/*propriedades da lista extra */
.extra{
margin: 1rem;
}
.extra h3{
margin-bottom: 0;
font-family: rockwell;
font-size: 30px
}
.extra ul li{
padding: 5px;
font-family: Helvetica;
font-size: 16px
}
/* FOOTER */
/*propriedades do menu de contato*/
footer nav ul{
margin: 20px 0;
padding: 0;overflow: hidden;
list-style-type: none;
border-top: 2px solid #800000;
width: 96vw;
height: 100px;
display: flex;
justify-content: center;
padding: 20px;}
footer nav ul li{
font-family: Helvetica;
font-size: 16px
}
footer nav li a{
float: left;
margin: 1.2em;
width: auto;}
footer nav li a:hover{color: #b13030;}
footer nav li a img{max-width: 3vw;}