-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaula.css
72 lines (56 loc) · 1.17 KB
/
aula.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
/* all
print
screen
speech */
/* Código da aula 6.5 */
@media screen and (max-width: 900px) {
/* VAMOS PARA O NOSSO PRIMEIRO OBJETIVO:
- [ ] Ajustar Menu: centralizar logo e remover links; */
header nav {
display: none;
}
header {
justify-content: center;
}
/* Ajustar seção Hero: diminuir o tamanho da fonte; */
.hero h1 {
font-size: 34px;
}
.hero h3 {
font-size: 26px;
}
/* Ajustar as imagens na seção Fotos: devem aparecer uma abaixo da outra; */
.know-the-ebytr {
padding: 100px 10px;
}
.know-the-ebytr .grid span {
padding: 10px;
}
.know-the-ebytr .grid span.small {
flex-basis: 100%;
}
.know-the-ebytr .grid span.large {
flex-basis: 100%;
}
.features .grid {
flex-direction: column;
}
/* Ajustar a Newsletter: ajustar espaço entre o input e o botão; */
.newsletter button {
margin-top: 10px;
}
mongodb://localhost:27018/
/* Ajustar Footer: aumentar o tamanho dos ícones. */
footer ul li i {
font-size: 40px;
}
}
@media print {
.features {
background-color: white !important;
}
* {
color: black !important;
background-color: white !important;
}
}