-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.css
87 lines (76 loc) · 1.45 KB
/
menu.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
* {
margin: 0px;
padding: 0px;
box-sizing: 0;
}
.bodyMenu {
display: flex;
height: 100vh;
flex-direction: column;
overflow-x: hidden;
background-color: rgba(34, 32, 35);
}
.titleOurBreakfast {
display: flex;
background-color: rgba(34, 32, 35);
height: 100px;
align-items: flex-end;
justify-content: center;
font-family: 'Great Vibes', cursive;
font-size: 50px;
color: white;
margin-bottom: 20px;
}
.letraLaranja {
color: chocolate;
}
.cardapioBlock {
display: flex;
flex-direction: row;
justify-content: center;
gap: 30px;
height: 60%;
color: white;
text-align: justify;
}
.cardapioBlock h3 {
font-size: 27px;
font-weight: lighter;
}
.cardapioBlock p {
font-family: 'Karla', sans-serif;
font-style: italic;
font-size: 20px;
margin-bottom: 25px;
}
.cardapioEsquerda,
.cardapioDireita {
display: flex;
flex-direction: column;
width: 34vw;
}
.numeroMenu {
font-style: normal;
}
.containerButton {
display: flex;
flex-grow: 1;
align-items: center;
justify-content: center;
}
.viewBreakfast {
display: flex;
justify-content: center;
align-items: center;
font-family: 'Karla', sans-serif;
text-decoration: none;
font-weight: bold;
color: white;
height: 50px;
width: 160px;
background-color: sandybrown;
}
.viewBreakfast:hover {
background-color: chocolate;
transition: all 1s;
}