-
Notifications
You must be signed in to change notification settings - Fork 0
/
restaurantStyle.scss
129 lines (107 loc) · 1.7 KB
/
restaurantStyle.scss
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
$starCheckedColor: orange;
$btnOrderOnlineColorYellow: orange;
$imgUrl:url("https://source.unsplash.com/1280x720/?food,food");
// $imgUrl: url("https://mdbootstrap.com/img/new/standard/nature/111.jpg");
.checked {
color: $starCheckedColor;
}
.btnOrderOnline {
background-color: $btnOrderOnlineColorYellow;
color: black;
border-radius: 15px;
}
.img-fluid {
content: $imgUrl;
}
.row {
margin-top: 4vh;
}
.owl-item {
cursor: pointer;
}
.owl-item:hover {
img {
opacity: 0.8;
}
p {
text-decoration: underline;
}
}
.owl-prev {
left: -30px;
}
.owl-next {
right: -4px;
}
.owl-prev,
.owl-next {
position: absolute;
top: 30%;
}
.owl-prev span,
.owl-next span {
font-size: 3rem;
}
.owl-dot {
font-size: 4rem;
}
.div-btn {
position: absolute;
top: 12px;
right: 22px;
}
.btn-outline-dark {
border-right: transparent;
border-color: lightgray;
border-radius: 5px;
border-width: 2px;
height: 35px;
}
// .btn-outline-dark:focus-visible {
// border-right: transparent;
// border-color: lightgray;
// border-radius: 5px;
// border-width: 2px;
// height: 35px;
// }
.btn-outline-dark i {
font-size: 0.8rem;
}
.inbSearch {
border-color: lightgray;
border-radius: 5px;
border-width: 2px;
}
//footer
footer {
background-color: #FAF1ED;
}
footer p {
color: #5a5151;
}
footer a {
color: black;
font-weight: 520;
}
footer a:hover {
text-decoration: underline;
color: #56645f;
}
footer span {
color: #5a5151;
}
footer ul {
list-style: none;
padding-left: 0;
}
footer ul a {
text-decoration: none;
}
.card-text,.card-title
{
text-overflow: ellipsis;
overflow: hidden;
width: 160px;
height: 1.2em;
white-space: nowrap;
}