forked from khushi-joshi-05/Food-ordering-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcateringservices.css
134 lines (111 loc) · 1.94 KB
/
cateringservices.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
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
130
131
132
133
134
* {
font-family: "Bree Serif", serif;
}
.mainhead:hover h1 {
color: rgb(138, 37, 37);
}
#active-page {
color: #dc3545;
border-bottom: 2px solid #dc3545;
}
@keyframes gradient-animation {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.head_container_service {
height: fit-content;
}
.head_container_service h1 {
text-align: center;
padding: 3rem;
letter-spacing: 3px;
color: brown;
}
.first_cont {
flex-wrap: wrap;
}
.first_cont .items {
height: 28rem;
width: 280px !important;
max-width: 320px !important;
/* padding-bottom: 2rem; */
}
.items {
overflow: hidden;
}
.items h2 {
padding: 1rem;
}
.items img {
transition: 0.3s;
z-index: 12;
}
.items li {
padding: 7px;
list-style: none;
}
.items .container {
width: 80%;
padding-left: 2rem;
}
.items:hover img {
transform: scale(1.1);
}
.but {
transition: 0.5s;
cursor: pointer;
margin-top: 1rem;
}
.but:hover {
background-color: rgb(138, 37, 37);
color: white;
transform: translateX(10px);
}
.second_cont {
flex-wrap: wrap;
}
.deals {
flex: 1 1 300px;
flex-wrap: wrap;
align-items: center;
justify-content: center;
transition: 0.3s;
}
.deals:hover {
transform: translateY(-10px);
background-color: rgb(138, 37, 37);
color: white;
border-color: white;
}
input,
textarea {
width: 100%;
}
#butt:hover {
background-color: rgb(196, 89, 89);
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.6);
background-image: linear-gradient(to top, rgb(246, 10, 10) , rgb(248, 145, 49), rgb(236, 239, 56));
}
::-webkit-scrollbar {
width:12px;
}
::-webkit-scrollbar-thumb {
background-color: #ff0707;
border-radius: 10px;
border:.3px solid white;
background-image: -webkit-linear-gradient(90deg,
rgb(20, 21, 12) 0%,
rgb(0, 0, 0) 25%,
transparent 100%,
rgb(247, 4, 4) 75%,
transparent)
}