-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
92 lines (81 loc) · 1.95 KB
/
index.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
@tailwind base;
@tailwind components;
@tailwind utilities;
/* Code to hide scroll bar */
@layer utilities {
/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
.text-breakwords {
margin: 0px;
font-family: ProximaNova, arial, Helvetica Neue, sans-serif;
font-weight: 700;
font-size: 18px;
line-height: 24px;
letter-spacing: -0.3px;
color: rgba(2, 6, 12, 0.75);
overflow: hidden;
width: 100%;
display: -webkit-box;
overflow-wrap: break-word;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
}
.single-text-breakwords {
margin: 0px;
/* font-weight: 700; */
font-family: ProximaNova, arial, Helvetica Neue, sans-serif;
font-size: 16px;
line-height: 24px;
letter-spacing: -0.3px;
color: rgba(81, 85, 91, 0.75);
overflow: hidden;
width: 100%;
display: -webkit-box;
overflow-wrap: break-word;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
}
.vertical-lr {
writing-mode: vertical-lr;
}
.calcualedwh {
width: calc(30vw - 54px);
height: calc(33.6vw - 60.48px);
}
.restmenu-width {
max-width: calc(100% - 144px);
}
.header-style {
transform: translateZ(0);
transition: transform 0.3s ease;
contain: size layout style;
}
.header-shadow {
box-shadow: 0 15px 40px -20px rgba(40, 44, 63, 0.15);
}
.bg-mobile {
background: linear-gradient(
rgb(255, 255, 255) -6.71%,
rgb(235, 235, 242) 56.19%,
rgb(223, 223, 231) 106.56%
);
}
.rest_card_grid {
padding: 0px;
list-style: none;
margin-block-end: 0px;
display: grid;
-webkit-box-align: start;
align-items: start;
grid-template-columns: repeat(2, 1fr);
gap: 32px 16px;
margin: 32px 16px;
}
}