Skip to content

Commit 1c209fd

Browse files
Merge pull request #1252 from arpy8/main
added cafe website - A website which provides details of the nearest cafes to people
2 parents 9a8d6b4 + 301bd63 commit 1c209fd

4 files changed

Lines changed: 417 additions & 0 deletions

File tree

Lines changed: 212 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,212 @@
1+
body {
2+
overflow: overlay;
3+
overflow-x: hidden;
4+
}
5+
6+
a {
7+
text-decoration: none !important;
8+
color: #F7E1AE;
9+
}
10+
a:hover{
11+
color: #617A55;
12+
}
13+
14+
/* scrollbar */
15+
16+
/* width */
17+
::-webkit-scrollbar {
18+
width: 10px;
19+
}
20+
21+
/* Track */
22+
::-webkit-scrollbar-track {
23+
background-color: transparent;
24+
box-shadow: inset 0 0 5px transparent;
25+
/* border-radius: 10px; */
26+
}
27+
28+
/* Handle */
29+
::-webkit-scrollbar-thumb {
30+
background: #FFF8D6 ;
31+
border-radius: 8px;
32+
width: 1px;
33+
}
34+
35+
36+
37+
::selection {
38+
color: #FFF8D6;
39+
background: #617A55;
40+
}
41+
42+
43+
a {
44+
-webkit-user-drag: none;
45+
user-select: none;
46+
-moz-user-select: none;
47+
-webkit-user-select: none;
48+
-ms-user-select: none;
49+
}
50+
51+
body {
52+
font-family: 'Montserrat';
53+
}
54+
55+
#title {
56+
background-color: #FFF8D6;
57+
color: #617A55;
58+
59+
}
60+
61+
.container-fluid{
62+
padding: 3% 15%;
63+
}
64+
65+
h1 {
66+
font-size: 3.5rem;
67+
line-height: 1.5;
68+
font-weight: 900;
69+
}
70+
71+
/* NAVIGATION BAR */
72+
73+
.navbar {
74+
padding: 0 0 4.5rem;
75+
76+
}
77+
78+
.navbar-brand {
79+
font-family: "Ubuntu";
80+
font-size: 2.5rem;
81+
font-weight: bold;
82+
color: #617A55 !important;
83+
}
84+
85+
.nav-item {
86+
padding: 0 18px;
87+
}
88+
89+
.nav-link {
90+
font-size: 1.2rem;
91+
font-family: "Montserrat-Light", sans-serif;
92+
color: #A4D0A4 !important;
93+
}
94+
95+
.nav-link:hover{
96+
color: #617A55 !important;
97+
}
98+
99+
/* download-button */
100+
101+
.search-button {
102+
color: #F7E1AE;
103+
background: #617A55;
104+
margin: 5% 3% 5% 0;
105+
border: 0;
106+
}
107+
108+
.search-button:hover {
109+
color: #617A55;
110+
background-color: #F7E1AE;
111+
border: 0;
112+
}
113+
114+
/* Title image */
115+
116+
.title-image {
117+
width: 80%;
118+
/* transform: rotate(25deg); */
119+
margin-left: 25%;
120+
}
121+
122+
/* .col-lg-6{
123+
margin-top: %;
124+
} */
125+
126+
/* features section */
127+
128+
h3 {
129+
font-size: 1.5rem;
130+
color: black;
131+
font-weight: 800;
132+
}
133+
134+
#features {
135+
padding: 7% 15%;
136+
}
137+
138+
.feature-box{
139+
text-align: center;
140+
padding: 4.4%;
141+
}
142+
143+
p{
144+
color: #8f8f8f;
145+
}
146+
147+
.icon{
148+
margin-bottom: 1rem;
149+
150+
}
151+
152+
.icon:hover{
153+
color: #FFF8D6 !important;
154+
}
155+
156+
/* topcafe */
157+
158+
#topcafe {
159+
padding: 7% 15%;
160+
text-align: center;
161+
background-color: #F7E1AE;
162+
color: #617A55;
163+
}
164+
165+
#topcafe h2{
166+
margin-bottom: 5%;
167+
}
168+
169+
table.table-hover th, thead, tr, td{
170+
border:1px solid #A4D0A4;
171+
}
172+
173+
174+
h2{
175+
font-size: 3rem;
176+
line-height: 1.5;
177+
font-weight: 800;
178+
}
179+
180+
.testimonial-image{
181+
width: 10%;
182+
border-radius: 100%;
183+
margin: 20px;
184+
}
185+
186+
.carousel-item {
187+
padding: 7% 15%;
188+
}
189+
190+
/* press section */
191+
#press {
192+
background-color: #F7E1AE;
193+
text-align: center;
194+
padding: 3%;
195+
}
196+
197+
.press-logo{
198+
width: 15%;
199+
margin: -30px 20px 50px 0px;
200+
}
201+
202+
/* pricing */
203+
#pricing{
204+
text-align: center;
205+
}
206+
207+
#footer{
208+
text-align: center;
209+
}
210+
#footer p{
211+
padding-top: 1%;
212+
}
Lines changed: 1 addition & 0 deletions
Loading
294 KB
Loading

0 commit comments

Comments
 (0)