-
Notifications
You must be signed in to change notification settings - Fork 0
/
estilo.css
308 lines (293 loc) · 5.72 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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
@import url('https://fonts.googleapis.com/css2?family=Sedgwick+Ave+Display&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abel&display=swap');
*
{
padding: 0px;
margin: 0px;
box-sizing: border-box;
list-style: none;
text-decoration: none;
font-family: 'Abel', sans-serif;
}
html, body
{
width: 100%;
height: 100%;
background-color: white;
}
.clear
{
clear: both;
display: none;
}
section
{
width: 100%;
position: relative;
border-top: 3px solid purple !important;
}
.overlay
{
height: 100vh;
/*background-color: rgba(128, 0, 128, 0.6);*/
}
h1{font-size: 60px; line-height: 65px;}
h2{font-size: 50px; line-height: 55px;}
h3{font-size: 40px; line-height: 45px;}
h4{font-size: 30px; line-height: 35px;}
p{font-size: 22px; line-height: 27px;}
/***Fim dos resets para a paginna*****/
/***CONFIGURANDO HEADER**/
header
{
z-index: 2;
position: fixed;
top: 0px;
height: 75px;
width: 100%;
padding: 10px;
box-shadow: 1px 1px 15px 0px purple;
background-color: white;
}
header .logo
{
float: left;
}
header .logo .logo-web
{
display: block;
}
header .logo .logo-mobile
{
display: none;
}
header .logo h1
{
color: black;
font-family: 'Sedgwick Ave Display', cursive;
letter-spacing: 5px;
animation-name: animacao-logo;
animation-duration: 4s;
animation-iteration-count: infinite;
}
@keyframes animacao-logo
{
0%{
text-shadow: 1px 1px 1.5px purple;
}
50%
{
text-shadow: 8px 8px 12px purple;
}
100%
{
text-shadow: 1px 1px 1.5px purple;
}
}
header nav
{
float: right;
}
header nav ul li
{
display: inline-block;
}
header nav ul li a
{
font-size: 50px;
padding: 0px 10px;
color: black;
}
/*****FIM DA ESTILIZAÇÃO DA HEADER*****/
/*******PERSONALIZANDO INICIO******/
main section.inicio
{
background-image: url(img/background-header.jpg);
background-attachment: fixed;
background-repeat: no-repeat;
background-size: cover;
}
main section.inicio .componentes
{
padding-top: 40vh;
text-align: center;
}
main section.inicio .componentes h2
{
margin: 30px 0px;
color: white;
}
main section.inicio .componentes a
{
background-color: purple;
color: white;
border-radius: 7px;
margin: 7px;
padding: 20px;
}
/*******SECAO SOBRE********/
main .sobre
{
text-align: center;
}
main .sobre h2
{
display: inline-block;
margin-top: 10vh;
border-top: 3px solid white;
padding: 15px;
color: purple;
}
main .sobre .service
{
display: flex;
flex-flow: row wrap;
width: 100%;
}
.conteiner-service
{
width: calc(50% - 40px);
margin: 20px;
padding: 20px;
background-color: rgb(82, 12, 82);
border-radius: 10px;
}
main .sobre .service .conteiner-service h3, main .sobre .service .conteiner-service p
{
color: white;
}
.animacao-botao
{
transition: 1s;
}
.animacao-botao:hover
{
background-color: rgb(34, 34, 34);
color: rgb(228, 181, 255)
}
/*****Galeria de Logos****/
main section.design
{
text-align: center;
border-top: 3px solid purple;
}
main section.design .desing-logo
{
padding-top: 7%;
}
main section.design .galeria
{
display: flex;
flex-flow: row wrap;
width: 100%;
padding: 20px;
}
main section.design .galeria .box-img
{
width: calc(100% / 5);
}
main section.design .galeria .box-img .img img
{
width: 100%;
}
/*********WEB E LOJA CSS ENTRELACADO*********/
/***********TRABALHANDO COM LAYOUT*************/
/***********TRABALHANDO COM LAYOUT*************/
/***********GM***********/
section.project
{
width: 100%;
padding-top: 10vh;
display: flex;
flex-flow: row wrap;
}
.cont {width: 50%; padding: 20px;}
.img-project {width: 50%;}
.img-project img {width: 100%;}
/**********BG*********/
section.project div.cont p
{
padding-bottom: 10vh;
}
section.project .cont > a
{
padding: 5px;
border-radius: 10px;
font-size: 30px;
color: white;
margin-top: 10vh;
background-color: #800080;
border: 2px solid white;
}
section.two
{
display: flex;
flex-flow: row-reverse wrap-reverse;
}
/********MUNDANDO COR DA SECTION COM IFRAME DA LOJA********/
footer
{
margin-top: 30px;
background-color: purple;
width: 100%;
}
footer
{
padding: 20px;
text-align: center;
color: white;
}
footer .dados
{
display: inline-block;
font-weight: bolder;
}
/**********CSS RESPONSIVO************/
@media screen and (max-width: 900px)
{
.projeto-gm, .projeto-bg, .img-gm img, .img-bg img
{
width: 100%;
padding: 5vh 10px;
float: none;
margin: 0px;
}
main .sobre ul
{
grid-template-columns: 1fr;
}
.conteiner-service
{
width: 100%;
margin: 20px;
padding: 20px;
background-color: rgb(82, 12, 82);
border-radius: 10px;
}
/********SECAO DESIGN RESPONSIVA**********/
main section.design .galeria
{
display: block;
}
main section.design .galeria .box-img
{
width: 90%;
margin: 0px auto;
}
/***********IFRAME RESPONSIVOS************/
/*******PDF MOBILE******/
/*****PDF MOBILE******/
}
@media screen and (max-width: 500px)
{
/***********HEADER RESPONSIVA************/
header .logo .logo-web
{
display: none;
}
header .logo .logo-mobile
{
display: block;
font-size: 60px;
}
}