-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu.css
102 lines (91 loc) · 1.57 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
*{
margin: 0;
padding: 0;
font-weight: sans-serif;
box-sizing: border-box;
}
.box {
width: 100%;
padding: 2.5rem;
background-color: black;
color: white;
overflow: hidden;
}
.content {
background: linear-gradient(rgba(0, 0, 0, 0.6), rgb(41, 40, 40));
color: white;
padding: 2em;
}
ul.header {
display: flex;
text-align: center;
justify-items: center;
justify-content: space-evenly;
}
a {
list-style: none;
text-decoration: none;
color: inherit;
padding: 0 2rem;
}
a:hover {
background-color: white;
color: #ff6200;
border-radius: 2rem;
}
h1
{
text-align: center;
color: white;;
padding: 0.5rem;
}
.item button
{
color: whitesmoke;
background-color: #ff6200;;
border: none;
outline: none;
cursor: pointer;
border-radius: 1rem;
padding: 0.5rem 1rem;
font-size: 0.8rem;
display: block;
margin: 0 auto;
transition: 0.2s all;
}
.item img
{
/* width: 35rem;
height: 25rem; */
object-fit: cover;
cursor: pointer;
transition: 0.2s ease;
border: 10px solid #ff6200;
border-radius: 1rem;
}
.item img:hover
{
transform:scale(1.04)
}
.item h4
{
padding: 0.7rem;
text-align: center;
font-size: 1rem;
}
.item button:hover
{
transform: scale(1.08);
}
.items {
display: flex;
grid-column-gap: 2rem;
grid-row-gap: 5rem;
flex-grow: inherit;
flex-wrap: wrap;
justify-content: center;
}
strong > p {
padding: 1em;
text-align: center;
}