-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.css
95 lines (81 loc) · 1.44 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
header {
font-size: 50px;
text-align: center;
color: rgb(15, 13, 13);
}
body{
background-color: #F5F5DC;
}
.nav-links ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
.nav-links li {
float: left;
}
.nav-links li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.nav-links li a:hover:not(.active) {
background-color: #111;
}
.active {
background-color: #04AA6D;
}
.menu ol{
font-size: 25px;
}
.menu img{
position: absolute;
top: 28%;
left: 30%;
width: 500px;
height: 450px;
border: 3px solid #0a0c07;
}
.cafe img {
position: absolute;
top: 28%;
left: 65%;
width: 500px;
height: 450px;
border: 3px solid #090a08;
}
.menu h2{
font-size: 30px;
color: rgb(255, 255, 255);
width: 130px;
height: 50px;
background: rgb(10, 9, 9);
transition: width 2s;
transition-property: width;
transition-duration: 2s;
transition-delay: 1s;
transition-timing-function: linear;
}
.menu h2:hover {
width: 300px;
}
.pizza img{
position: absolute;
top: 110%;
left: 30%;
width: 500px;
height: 450px;
border: 3px solid #0a0c07;
}
.burger img {
position: absolute;
top: 110%;
left: 65%;
width: 500px;
height: 450px;
border: 3px solid #090a08;
}