-
Notifications
You must be signed in to change notification settings - Fork 0
/
responsivo.css
105 lines (84 loc) · 2.27 KB
/
responsivo.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
@media screen and (min-width: 0) {
.destaques__principal, .destaques__categorias {
grid-column: 1 / 5;
}
.destaques__secundario:nth-child(2) {
display: none; /*esconde a imagem */
grid-column: none;
grid-row: none;
}
.destaques__secundario:nth-child(3) {
display: none; /*esconde a imagem */
grid-column: none;
grid-row: none;
}
.destaques__secundario:nth-child(4) {
display: none; /*esconde a imagem */
grid-column: none;
grid-row: none;
}
.destaques__secundario:nth-child(5) {
display: none; /*esconde a imagem */
grid-column: none;
grid-row: none;
}
.populares__conteudo {
flex-direction: column;
}
.populares__card {
grid-template-rows: 150px auto;
margin-bottom: 3rem;
margin-right: 0;
width: 100%
/*width: calc(20% - 1rem);*/
}
}
@media screen and (min-width: 768px) {
.destaques__principal {
grid-column: 1 / 4;
}
.destaques__secundario:nth-child(2) {
display: flex; /*esconde a imagem */
grid-column: 4 / 4;
grid-row: 1 / 1;
}
.destaques__secundario:nth-child(3) {
display: flex; /*esconde a imagem */
grid-column: 4 / 4;
grid-row: 2 / 2;
}
.destaques__secundario:nth-child(4) {
display: flex; /*esconde a imagem */
grid-column: 4 / 4;
grid-row: 3 / 3;
}
.destaques__secundario:nth-child(5) {
display: flex; /*esconde a imagem */
grid-column: 3 / 3;
grid-row: 3 / 3;
}
.destaques__categorias {
grid-column: 1 / 3;
}
.populares__conteudo {
flex-direction: row;
}
.populares__card {
grid-template-rows: 173px auto;
margin-bottom: 3rem;
margin-right: 1rem;
width: calc(50% - 1rem);
}
}
@media screen and (min-width: 992px) {
.populares__card {
margin-bottom: 3rem;
width: calc(33.33% - 1rem);
}
}
@media screen and (min-width: 1200px) {
.populares__card {
margin-bottom: 0;
width: calc(20% - 1rem);
}
}