-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
91 lines (80 loc) · 1.69 KB
/
style.css
File metadata and controls
91 lines (80 loc) · 1.69 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
min-height: 100vh;
}
.app {
min-height: 100vh;
background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee");
background-position: center;
background-size: cover;
background-repeat: no-repeat;
position: relative;
display: flex;
align-items: center;
justify-content: center;
}
.overlay {
position: absolute;
inset: 0;
background-color: rgba(0, 0, 0, 0.523);
}
.content {
position: relative;
width: 100%;
padding: 1.5rem;
display: flex;
justify-content: center;
}
.card {
background: rgba(255, 255, 255, 0.12);
backdrop-filter: blur(14px);
border-radius: 16px;
padding: 2.5rem;
max-width: 420px;
width: 100%;
text-align: center;
color: #fff;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.card h1 {
font-size: clamp(1.8rem, 4vw, 2.4rem);
font-weight: 600;
margin-bottom: 0.8rem;
}
.card p {
font-size: clamp(0.95rem, 2.5vw, 1.05rem);
font-weight: 300;
margin-bottom: 2rem;
color: #eaeaea;
}
.location-btn {
width: 100%;
padding: 0.9rem 1.2rem;
font-size: 1rem;
font-weight: 500;
border: none;
border-radius: 50px;
background: linear-gradient(135deg, #4facfe, #00f2fe);
color: #fff;
cursor: pointer;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.location-btn:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(0, 242, 254, 0.4);
}
.pDetails {
font-size: 1rem;
color: #ffffff;
font-weight: 600;
}
@media (max-width: 480px) {
.card {
padding: 2rem 1.5rem;
}
}