-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreceitas.css
77 lines (64 loc) · 1.18 KB
/
receitas.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
text-decoration: none;
list-style: none;
font-family: 'Montserrat', sans-serif;
flex-flow: wrap;
}
.receita img{
width: 305px;
height: 305px;
}
header{
text-align: center;
background-color: #FFC107;
}
nav ul {
background-color: #FFA000;
display: flex;
justify-content: center;
gap: 58px;
}
li{
font-size: 30px;
font-weight: 700;
color: #FDFDFD;
}
h1 {
font-size: 45px;
margin-top: 5%;
margin-left: 15%;
margin-bottom: 5%;
}
.sessão-receitas,h2{
display: flex;
gap: 83px;
justify-content: center;
text-align: center;
font-size: 26px;
margin-top: 2%;
}
.receita a {
display: inline-block;
padding: 5px 40px ;
background-color:#176902;
color: #FDFDFD;
margin-top: 3%;
font-weight: 700;
border-radius: 5px;
}
footer{
margin-top: 2%;
display: flex;
font-size: 18px;
background-color: #FFC107;
}
footer p {
margin: auto auto;
align-self: center;
color: #FDFDFD;
font-size: 20px;
font-weight: 700;
}