-
Notifications
You must be signed in to change notification settings - Fork 2
/
Slide-style.css
80 lines (77 loc) · 1.63 KB
/
Slide-style.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
* {box-sizing:border-box}
/* Slideshow container */
.special-section{
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 90vh;
}
.special-section h1{
width: 100%;
text-align: left;
padding-left: 10%;
margin-bottom: 50px;
color: #EB0F00;
font-family: 'EngraversGothic BT', 'Segoe UI', serif;
}
.special-section .back{
display: flex;
width: 90%;
/* background-color: bisque; */
align-items: center;
}
.special-section .back .slider-back{
display: flex;
width: 100%;
/* background-color: bisque; */
overflow-y: hidden;
}
.special-section .back .slider-back .slider-div{
display: flex;
width: 100%;
/* background-color: burlywood; */
justify-content: flex-start;
overflow: hidden;
flex-shrink: 0;
/* flex-wrap: wrap; */
}
.special-section .back .slider-back .slider-div .food{
min-width: 250px;
height: 300px;
background-position: right;
background-size: cover;
background-repeat: no-repeat;
margin-right: 15px;
}
.special-section .back .slider-back .slider-div .food .food-name{
height: 50px;
width: 100%;
display: flex;
background-color: #130E0E;
color: #FFFFFF;
font-family: 'EngraversGothic BT', 'Segoe UI', serif;
font-size: 25px;
padding: 0 10px;
position: relative;
top: 70%;
align-items: center;
}
.special-section .back .slider-back .slider-div .food .food-name p{
flex: 2;
}
.arrow{
/* background-color: blue; */
cursor: pointer;
position: relative;
}
.arr1{
left: 20px;
}
.arr2{
right: 20px;
}
.arrow img{
width: 70px;
}