-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
111 lines (107 loc) · 2.23 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
@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Sarala:wght@400;700&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
text-decoration: none;
}
body{
font-size: 100%;
background: linear-gradient(68.15deg, #2F2325 16.62%, #8E5D52 85.61%)
}
.cabecalho {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-around;
padding: 24px;
}
.img-cabecalho{
height: 72px;
}
.menu-cabecalho{
display: flex;
gap: 32px;
}
.item-menu-cabecalho{
font-family: 'Sarala', sans-serif;
color: #FFF2E7;
font-weight: 400;
font-size: 18px;
}
.conteudo{
margin-bottom: 48px;
border-top: 0.4px solid #FFF2E7;
}
.conteudo-principal{
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-around;
}
.conteudo-principal-escrito{
display: flex;
flex-direction: column;
gap: 32px;
}
.conteudo-principal-escrito-titulo{
font-family: 'Righteous', cursive;
font-weight: 400px;
font-size: 64px;
color:#FFF2E7
}
.conteudo-principal-escrito-subtitulo{
font-family: 'Sarala', sans-serif;
font-weight: 400px;
font-size: 24px;
color: #ECD6C4;
}
.conteudo-principal-escrito-botao{
background-color :#ECD6C4;
width: 180px;
height: 60px;
border: none;
box-shadow: 4px 5px 4px rgba(0, 0, 0, 0.25);
border-radius: 20px;
font-family: 'Sarala', sans-serif;
font-weight: 400;
font-size: 24px;
color: #2F2325;
}
.conteudo-principal-escrito-botao:hover{
background-color: rgba(236, 214, 196, 0.53);
}
.conteudo-principal-imagem{
height: 430px;
}
.conteudo-secundario{
display: flex;
flex-direction: column;
align-items: center;
gap:24px;
margin-top: 48px;
}
.conteudo-secundario-titulo{
border-top: 0.4px solid #FFF2E7;
padding-top: 48px;
font-family: 'Righteous', cursive;
font-weight: 400;
font-size: 24px;
color: #FFF2E7;
margin-bottom: 16px;
}
.conteudo-secundario-paragrafo{
font-family: 'Sarala', sans-serif;
font-weight: 300;
font-size: 18px;
color : #ECD6C4;
}
.rodape{
padding: 32px;
border-top: 0.4px solid #FFF2E7;
}
.rodape-imagem{
height: 48px;
display : block;
margin: 0 auto;
}