-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKwelcome.html
More file actions
205 lines (173 loc) · 4.33 KB
/
Copy pathKwelcome.html
File metadata and controls
205 lines (173 loc) · 4.33 KB
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Kitchen Interior Cost Estimator | Elicit</title>
<style>
/* Universal Box Sizing */
*, *::before, *::after {
box-sizing: border-box;
}
html, body {
margin: 0;
padding: 0;
min-height: 100vh;
}
body {
font-family: Arial, sans-serif;
background:
linear-gradient(rgba(6, 158, 228, 0.12), rgba(255, 255, 255, 0.7)),
url('https://images.unsplash.com/photo-1615874959474-d609969a9c31?auto=format&fit=crop&w=1200&q=80') no-repeat center center;
background-size: cover;
display: grid;
place-items: center;
}
.container {
padding: 2rem 5rem;
text-align: center;
background-color: rgba(255, 255, 255, 0.85);
border-radius: 1rem;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
max-width: 90%;
width: 700px;
animation: fadeIn 1s ease forwards;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(-30px); }
to { opacity: 1; transform: translateY(0); }
}
h1 {
margin-bottom: 0.5rem;
font-size: 2.5rem;
animation: fadeIn 1.2s ease forwards;
}
h2 {
color: rgb(70, 69, 69);
font-weight: 400;
margin: 0.5rem 0 1rem;
font-size: 1.3rem;
animation: fadeIn 1.8s ease forwards;
}
.icon {
width: 100%;
max-width: 400px;
height: auto;
object-fit: cover;
margin-bottom: 1rem;
animation: fadeIn 1.5s ease forwards;
}
button {
padding: 1rem 2.5rem;
font-size: 1.2rem;
background: #f16e84;
color: #fff;
border: none;
border-radius: 1rem;
cursor: pointer;
box-shadow: 0 4px 24px rgba(235, 89, 95, 0.15);
transition: transform 0.2s, box-shadow 0.2s;
width: 40%;
}
button:hover {
transform: scale(1.08);
box-shadow: 0 8px 32px rgba(235, 89, 95, 0.25);
}
.Welcome_heading {
margin-top: -1.6rem;
}
.Welcome_heading span {
color: #f16e84;
}
/* Mobile Optimization Only */
@media (max-width: 768px) {
body {
background-attachment: scroll;
}
.container {
width: 350px;
max-width: 100%;
padding: 1.2rem;
margin: 0 0.5rem;
}
h1 {
font-size: 1.2rem;
}
h2 {
font-size: 0.8rem;
}
.icon {
max-width: 280px;
}
button {
width:150px;
font-size: 0.8rem;
padding: 0.9rem 1.8rem;
}
.whatsapp-float {
width: 50px;
height: 50px;
bottom: 2rem;
}
.whatsapp-float img {
width: 24px;
height: 24px;
}
}
/* Orientation-specific layout */
@media screen and (orientation: portrait) {
.container {
padding: 1.5rem;
}
}
.Link-1, .Link-2, .Link-3 {
position: fixed;
right: 25px;
z-index: 1000;
width: 60px;
height: 60px;
border-radius: 50%;
background-color: #09335e;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.Link-1 { bottom: 35rem; }
.Link-2 { bottom: 30rem; }
.Link-3 { bottom: 25rem; }
.Link-1 img, .Link-2 img, .Link-3 img {
width: 30px;
height: 30px;
}
@media (max-width: 700px) {
.Link-1, .Link-2, .Link-3 {
width: 36px;
height: 36px;
right: 10px;
}
.Link-1 { bottom: 12rem; }
.Link-2 { bottom: 8rem; }
.Link-3 { bottom: 4rem; }
.Link-1 img, .Link-2 img, .Link-3 img {
width: 18px;
height: 18px;
}
}
</style>
</head>
<body>
<div class="container">
<img src="Photos/p15.jpg" alt="Kitchen Icon" class="icon" />
<h1 class="Welcome_heading">Welcome to <span>KitchenEstimator</span></h1>
<h2>Your smart kitchen makeover starts here!</h2>
<button onclick="location.href='Kstep1.html'">Get Started</button>
</div>
<a href="https://wa.me/+919506423475" target="_blank" class="Link-3">
<img src="https://img.icons8.com/ios-filled/50/ffffff/whatsapp.png" alt="WhatsApp" >
</a>
<script>
localStorage.clear();
</script>
</body>
</html>