-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMenu-CSS.css
More file actions
64 lines (55 loc) · 1001 Bytes
/
Menu-CSS.css
File metadata and controls
64 lines (55 loc) · 1001 Bytes
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
/* MENU SECTION CSS CODE */
#Menu {
width: 100%;
background-color: lightblue;
padding-bottom: 50px;
}
.row7 {
display: flex;
justify-content: center;
flex-wrap: wrap;
margin-top: 20px;
}
.c11 {
height: 300px;
width: 20%;
margin: 20px;
border: 3px solid black;
border-radius: 20px;
box-shadow: white 10px 15px;
background-color: white;
overflow: hidden;
text-align: center;
}
.c11 h4 {
margin-top: 10px;
font-size: 25px;
}
.c11 img {
margin-top: 15px;
height: 200px;
width: 200px;
border-radius: 20px;
transition: transform 0.4s ease;
}
.c11 img:hover {
transform: scale(1.2);
}
.c11 p span {
background-color: darkblue;
padding: 5px 10px;
display: inline-block;
margin-top: 10px;
border-radius: 10px;
}
.c11 a {
color: white;
text-decoration: none;
}
.c11 a:hover {
color: darkred;
}
.c11 p span:hover {
background-color: lightgray;
box-shadow: black 2px 2px;
}