-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (72 loc) · 1.59 KB
/
style.css
File metadata and controls
86 lines (72 loc) · 1.59 KB
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
background-image: url('imagens/pag1.jpeg');
background-size: cover; /* Redimensiona a imagem para cobrir todo o background */
background-position: center; /* Centraliza a imagem de background */
background-repeat: no-repeat; /* Impede que a imagem se repita */
margin: 0; /* Remove margens padrão do body */
height: 100vh; /* Define a altura do body para cobrir a altura total da janela de visualização */
}
.content {
text-align: center;
color: white;
padding: 50px;
background: rgba(0, 0, 0, 0.5); /* Adiciona um fundo semi-transparente para melhor legibilidade do texto */
}
.interface{
max-width: 1280px;
margin: auto;
}
.flex{
display: flex;
}
/*ESTILO DO CABEÇALHO*/
.button{
display: inline-block;
padding: 5px 10px;
box-shadow: rgb(0, 0, 0);
background-color: #c3cd9f;
text-decoration: none;
cursor: pointer;
border-radius: 20px;
color:black;
}
.button:hover{
color: green;
transform: scale(1.05);
}
header{
padding: 40px 4%;
}
header > .inteface{
display: flex;
}
header nav ul{
list-style-type: none;
}
header nav ul li{
display: inline-block;
padding: 0 40px;
}
/*TOPO DO SITE*/
section.topo-do-site{
padding: 40px 4%
}
section.topo-do-site .flex{
align-items: center;
justify-content: center;
padding: 60px;
}
.topo-do-site h1{
font-size: 60px;
line-height: 40px;
}
.topo-do-site .txt-topo-site p{
color: rgb(0, 0, 0);
margin: 20px 0;
}