-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInicial.css
102 lines (75 loc) · 1.62 KB
/
Inicial.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
/* Configurações do Home */
/*body { font-family: 'Montserrat', sans-serif; }*/
.banner { width: 100%; }
.titulo {
text-align: center;
font-size: 2em;
margin: 0 0 1em;
clear: left;
text-shadow: 2px 2px 5px blue;
}
.principal {
padding: 3em 0;
background: white;
width: 940px;
margin: 0 auto;
}
.principal p { margin: 0 0 1em; }
.principal strong { font-weight: bold; }
.principal em { font-style: italic; }
.utensilios {
width: 125px;
float: left;
margin: 0 20px 20px 0;
}
#missao { box-shadow: inset 0 0 3px red; }
.endereco {
padding: 3em 0;
background: linear-gradient(white,gray);
}
.endereco p {
margin: 0 0 3em;
text-align: center;
}
.mapa {
width: 940px;
margin: 0 auto;
}
.beneficios {
padding: 3em 0;
background: gray;
}
.conteudo{
width: 640px;
margin: auto;
}
.lista {
width: 39%;
display: inline-block;
vertical-align: top;
}
.itens { line-height: 1.5em; }
.itens:first-child { font-weight: bold; }
.itens:before { content: "★"}
.imagem { /* beneficios */
width: 60%;
opacity: 0.5;
box-shadow: 10px 10px 30px yellow;
}
.video {
width: 560px;
margin: 2em auto;
}
/* Configurações do Mouse */
.imagem:hover {
width: 60%;
opacity: 1;
transition: 0.5s;
}
/* Design Responsivo */
@media screen and (max-width:480px) {
.cabecalho, .principal, .conteudo, .mapa, .video { width: auto; }
h1 { text-align: center; }
nav { position: static; }
.lista, .imagem { width: 100%; }
}