-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
35 lines (31 loc) · 895 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap');
@import url(/styles/header.css);
@import url(/styles/banner.css);
@import url(/styles/carrossel.css);
@import url(styles/topicos.css);
@import url(styles/contato.css);
@import url(styles/rodape.css);
*{
margin: 0;
padding: 0;
box-sizing: border-box;
text-decoration: none;
list-style: none;
}
:root{
--cor-de-fundo: #EBECEE;
--branco: #ffffff;
--laranja: #EB9B00;
--azul-degrade: linear-gradient(97.54deg, #002f52 35.49%, #326589 165.37%);
--font-principal: "Poppins";
--azul: #002F52;
--fonte-secundario: "Josefin Sans";
--cinza: #474646;
--cinza-claro: #858585;
}
body{
background-color: var(--cor-de-fundo);
font-family: var(--font-principal);
font-size: 1rem;
font-weight: 400;
}