-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmidsem.css
More file actions
75 lines (63 loc) · 1.08 KB
/
midsem.css
File metadata and controls
75 lines (63 loc) · 1.08 KB
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
@media screen and (max-width: 600px) {
body {
background-color: lightgray;
}
}
nav{
position: sticky;
top:0%;
background-color: gray;
}
ul{
display: flex;
gap: 30px;
}
.bakery-menu{
height: 500px;
width: 1450px;
background-color: gray;
display: flex;
justify-content: flex-start;
align-items: center;
}
#cakes{
height: 200px;
width: 300px;
border-radius: 20px;
background-color: aqua;
margin-left: 30px;
text-decoration: double;
margin-top: -200px;
}
img{
height: 80px;
width: 80px;
padding-left: 30px;
padding-top: 30px;
}
h2{
margin-top: 2%;
margin-left: 10%;
}
h3{
margin-top: 1%;
margin-left: 10%;
}
.slideshow{
width: 100%;
height: 400px;
position: relative;
overflow: hidden;
}
.slide{
position: absolute;
height: 100%;
width: 100%;
object-fit: cover;
animation: slideshow 2s infinite ;
}
@keyframes slideshow {
0% { opacity: 1;}
33% { opacity: 1;}
66% { opacity: 1;}
}