forked from khushi-joshi-05/Food-ordering-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
terms.css
113 lines (97 loc) · 2.22 KB
/
terms.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
/* Reset default styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
body {
color: #333;
line-height: 1.6;
font-size: 16px;
background-image: linear-gradient(115deg, rgba(170, 0, 0, 0.456), rgba(0, 0, 0, 0.67)), url(../Images/homeSliderImages/home-slider-3.jpg);
background-size: cover;
background-position: center;
color: black;
font-family: 'Poppins', sans-serif;
margin: 0;
}
/* Scrollbar track */
::-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));
}
/* Scrollbar */
::-webkit-scrollbar {
width: 12px;
}
/* Scrollbar thumb */
::-webkit-scrollbar-thumb {
border-radius: 10px;
border: 0.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
);
transition: background-color 0.3s;
}
::-webkit-scrollbar-thumb:hover {
background-color: #dc3545;
cursor: pointer;
}
.main-container{
width: 65%;
margin: 20px auto;
padding: 20px;
background: linear-gradient(to top , rgb(255, 211, 145), #ffffff);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 10px;
}
.main-container h1 {
text-align: center;
font-weight: bold;
font-size: 44px;
color: #980816;
}
.main-container hr {
border: 0;
border-top: 1px solid #980816;
margin: 20px 0;
}
.main-container .terms-section {
margin-bottom: 20px;
border-radius: 5px;
}
.main-container h2 {
color: #dc3545;
/* background-color: #ff6666; */
border-radius: 5px;
font-size: 26px;
}
.main-container p {
color: #333;
font-size: 19px;
}
.main-container ul {
list-style-type: disc;
padding-left: 20px;
color: #333;
margin-top: 10px;
}
.main-container ul li {
font-size: 18px;
}
@media (max-width: 780px) {
.main-container {
width: 95%;
margin: 60px auto;
padding: 14px;
background: linear-gradient(to top, rgb(255, 211, 145), #ffffff);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 10px
}
}