-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
123 lines (101 loc) · 2.09 KB
/
style.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
:root {
--fonte_principal: 'Poppins', sans-serif;
--fonte_secundaria: 'Work Sans', sans-serif;
--fonte_terciaria: 'Anton', sans-serif;
--preto_1: #000000;
--branco_2: #ffffff;
--branco_3: #ffffff;
--cinza1: #fff9f9;
--cinza_2: #faf8f4;
--offwhite: #ffffff;
--offwhite_2: #f5f3f3;
}
.corpo {
background-image: linear-gradient(to bottom right,#ffffff, #ffffff, var(--cinza_2), var(--cinza_1), var(--branco_2));
}
.logo__cabecalho {
width: 300px;
}
.cabecalho {
text-align: center;
background-color: var(--preto_1);
}
.info {
font-family: var(--fonte_);
font-size: 4em;
text-align: center;
margin: 0.7em 0;
color: rgb(0, 0, 0);
}
.card {
display: grid;
grid-template-rows: 55% 20% 25%;
justify-items: center;
text-align: center;
padding: 1em;
margin: 2em 4em;
background-image: linear-gradient(var(--offwhite), var(--offwhite_2), var(--branco_2));
border-radius: 5px;
height: 350px;
box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.966)
}
.imagem__card {
width: 200px;
}
.titulo {
font-size: 20px;
font-family: var(--fonte_principal);
}
.texto {
font-size: 18px;
font-weight: 700;
font-family: var(--fonte_secundaria);
}
.regiao {
text-align: center;
margin: 2em 0;
}
.texto__regiao {
margin: 1em;
}
.sobre {
margin: 3em 0;
}
.titulo__sobre {
text-align: center;
font-family: var(--fonte_principal);
font-size: 1.5em;
}
.texto__sobre {
font-family: var(--fonte_secundaria);
font-weight: 900;
font-size: 1em;
margin: 1em 2em
}
.mapa {
width: 90%;
border-radius: 2em;
box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.993)
}
.contatos{
text-align: center;
margin: 3em;
font-family: var(--fonte_principal);
}
.lista__contatos {
margin: 1em 0;
}
.lista__contatos img {
width: 30px;
}
.lista__contatos p {
margin-bottom: 1em;
font-weight: 600;
}
.rodape{
text-align: center;
background-image: linear-gradient(to bottom right,var(--branco_2), var(--branco_3));
}
.img__rodape {
width: 200px;
}