-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
99 lines (98 loc) · 1.82 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
:root {
--branco-principal: #ffffff;
--verde-secundario: #38fc32;
--cor-de-fundo: #00030c;
--fonte-principal: 'Inter';
}
body {
background-color: var(--cor-de-fundo);
color: var(--branco-principal);
text-align: left;
font-family: var(--fonte-principal);
font-size: 16px;
font-weight: 400;
}
* {
margin: 0;
padding: 0;
}
.principal {
background-image: url("img/background.png");
background-repeat: no-repeat;
background-position: 900px;
background-size: 45%;
align-items: center;
}
.titulo {
text-align: center;
margin-top: 50px;
}
.container {
height: 100vh;
margin: 0 6em;
display: grid;
}
.main-nav {
padding: 10px;
}
.main-nav ul {
list-style: none;
padding: 0;
}
.main-nav li {
display: inline;
margin-right: 20px;
}
.main-nav li a {
color: #ffffff;
text-decoration: none;
}
.secundario__imagem {
width: 50%;
}
.secundario {
align-items: center;
margin: 0 10em;
}
.descricao__titulo {
font-weight: 700;
font-size: 48px;
color: var(--branco-principal);
margin-bottom: 0.5em;
}
.descricao__texto {
color: var(--branco-principal);
text-align: justify;
}
.container__descricao {
padding: 2em;
}
.secundario_imagem {
width: 50%;
}
.descricao_titulo {
font-weight: 700;
font-size: 48px;
color: var(--branco-principal);
margin-bottom: 0.5em;
}
.descricao_titulo {
text-align: justify;
}
.container_descricao {
padding: 2em;
}
.lista__link a {
color: var(--branco-principal);
margin-left: 3em;
text-decoration: none;
}
.rodape__lista {
display: flex;
list-style-type: none;
justify-content: center;
}
.rodape {
text-align: center;
margin: 0 3em;
}