-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
159 lines (138 loc) · 3.21 KB
/
main.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
@charset "UTF-8";
/* NUNITO */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap');
/* SACRAMENTO (parece cursiva */
@import url('https://fonts.googleapis.com/css2?family=Sacramento&display=swap');
body {
width: 100vw;
height: 100vh;
}
main {
padding-top: 50px;
/* padding-bottom: 50px; */
/* background-image: url(imagens/fundo_catalogo.png);
background-position: center;
background-position-y: top; */
background-color: #fefdef;
}
div#cards-catalogo {
background-image: url(imagens/fundo_card_.png);
background-position: center bottom;
}
div#catalogo {
width: 100%;
/* outline: 1px solid black; */
display: flex;
flex-direction: row;
justify-content: right;
align-items: center;
}
div#catalogo h3 {
width: 65%;
height: 100px;
font-size: 4em;
padding: 10px;
text-indent: 190px; /*gambiarra: faz o texto começar 200px pro lado */
background-color: #FAE5DB;
border-radius: 5px;
box-shadow: -10px 10px .5px #E3C3BC;
font-family: 'Sacramento', cursive;
overflow: hidden;
}
section#cards {
/* outline: 1px solid black; */
margin: 100px 50px 50px;
padding: 20px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
flex-wrap: nowrap;
}
section#cards .normal {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
flex-wrap: nowrap;
flex: 1 1 auto;
}
.card {
display: flex;
flex-direction: column;
min-width: 250px;
width: 300px;
min-height: 350px;
height: 400px;
margin: 0px 30px 40px;
background-color: #FAE5DB;
box-shadow: -10px 10px .5px #E3C3BC;
font-family: 'Nunito', sans-serif;
overflow: hidden;
border-radius: 5px;
justify-content: space-around;
align-items: center;
}
.card:hover {
background-color: #f3dfd7;
}
.card img {
width: 200px;
}
.card figcaption {
font-size: 2em;
}
.btnVerde {
margin-top: 65px;
background-color: #A3A646;
font-size: 2.5em;
width: 250px;
height: 50px;
text-align: center;
box-shadow: -5px 5px 3px rgba(1,1,1,0.3);
}
.btnVerde:hover {
background-color: #9fa24e;
}
#btnVerMais {
height: 2em;
}
section#sobre-nos {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 200px 0px;
background-image: url(imagens/fundo_sobrenos.png);
background-size: 90%;
background-position-y: bottom;
background-position-x: center;
background-repeat: no-repeat;
}
section#sobre-nos div {
width: 550px;
height: 550px;
background-color: #FAE5DB;
padding: 30px;
border-radius: 10px;
box-shadow: -10px 10px .5px #E3C3BC;
font-size: 1.8em;
}
section#sobre-nos h3 {
text-align: center;
font-family: 'Sacramento';
font-size: 2.5em;
}
section#sobre-nos p {
margin-top: -10px;
padding: 20px;
}
section#sobre-nos img {
width: 700px;
border: 3px solid #A3A646;
border-radius: 10px;
}
/* classes de aparencia para o js */
.hide {
display: none;
}