-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
228 lines (187 loc) · 5.01 KB
/
Copy pathstyles.css
File metadata and controls
228 lines (187 loc) · 5.01 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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
h1 {
text-align: center;
color: var(--text);
margin: 0 0 10px 0;
font-family: 'Lobster', cursive;
font-size: 42px;
font-weight: 700px;
}
/* Sliding pics? */
.event-container {
position: relative;
width: 100%;
height: 100vh;
overflow: hidden;
}
.image-slider {
position: absolute;
top: 0;
left: 0;
display: flex;
width: calc(100vw * 8);
height: 100%;
z-index: 1;
}
.image-slider img {
width: 100vw;
height: 100vh;
object-fit: cover;
flex-shrink: 0;
}
/* reset browser set settings */
html, body {
margin: 0;
padding: 0;
height: 100%;
box-sizing: border-box;
line-height:1.65;
}
/* savannah's awesome css */
body {
font-family: Arial, sans-serif;
background: #f7f7f7;
color: #333;
}
header {
background: url('packages-banner.jpg') no-repeat center center/cover;
height: 300px;
display: flex;
align-items: center;
justify-content: center;
color: white;
text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}
header h1 {
font-size: 3em;
}
.subheader {
text-align: center;
font-size: 1.2em;
color: #444;
margin-top: 30px;
padding: 0 20px;
}
.container {
max-width: 1000px;
margin: 40px auto;
padding: 0 20px;
}
.package {
background: white;
margin-bottom: 30px;
padding: 25px;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.package h2 {
margin-top: 0;
font-size: 1.8em;
}
.package-price {
color: #009578;
font-size: 1.2em;
margin: 10px 0;
}
.package-details {
font-size: 1em;
line-height: 1.6;
}
ul {
padding-left: 20px;
}
/* Footer */
footer {
background: rgba(215, 238, 255, 0.9);
color: #4b4b4b;
text-align: center;
padding: 1.5rem 1rem;
margin-top: 40px;
border-radius: var(--radius) var(--radius) 0 0;
font-size: small;
}
/* about section stolen css*/
a { color:#2563eb; text-decoration:none; transition:color .2s ease,filter .2s ease; }
a:hover { color:#1d4ed8; filter:brightness(1.05); }
/* will not be using the blue theme */
/* html,body { margin:0; padding:0; } */
/* body {
color:var(--ink);
font-family:"Segoe UI", Roboto, Arial, sans-serif;
line-height:1.65;
background:
radial-gradient(1200px 600px at 80% -10%, #fff8f1 0%, transparent 60%),
radial-gradient(900px 500px at -10% 10%, #eaf2ff 0%, transparent 60%),
linear-gradient(180deg,var(--sky-0)0%,var(--sky-1)40%,var(--sky-2)100%);
-webkit-font-smoothing:antialiased;
-moz-osx-font-smoothing:grayscale;
} */
/* index.html css */
:root {
--sky-0:#f0f6ff; --sky-1:#e6f0ff; --sky-2:#dbeafe;
--ink:#0f172a; --ink-2:#334155; --head:#ca8434;
--ring:#e6f2ff;
--radius:16px;
--link:#2563eb;
--link-h:#1d4ed8;
--shadow:0 10px 28px rgba(15,30,60,.12);
--accent-start:#4f8df6;
--accent-end:#7db8ff;
}
/* ===== Slide-in / Fade-in ===== */
.slide-in {
opacity:0;
transform:translateY(24px) scale(.985);
will-change:transform,opacity;
transition:opacity .6s ease-out,transform .6s cubic-bezier(.22,.61,.36,1);
}
.slide-in.visible {
opacity:1;
transform:translateY(0) scale(1);
}
.btn {
display: inline-flex;
align-items: center;
gap: .45rem;
padding: .7rem 1.1rem;
border-radius: 999px;
color: #fff;
background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
box-shadow: 0 10px 22px rgba(60,110,220,.25);
position: relative;
overflow: hidden;
transform: translateZ(0);
transition: transform .18s ease, box-shadow .18s ease, filter .2s ease;
font-weight: 500;
}
.btn:hover {
transform: translateY(-2px);
box-shadow: 0 16px 30px rgba(60,110,220,.28);
filter: saturate(1.05);
}
.btn:active {
transform: translateY(0);
box-shadow: 0 8px 18px rgba(60,110,220,.22);
}
.btn:focus-visible {
outline: 2px solid var(--ring);
outline-offset: 3px;
}
.btn::after {
content: "";
position: absolute;
inset: -140% -30%;
background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.35) 50%, transparent 100%);
transform: translateX(-60%) rotate(16deg);
transition: transform .8s ease;
pointer-events: none;
}
.btn:hover::after {
transform: translateX(120%) rotate(16deg);
}
.btn i { margin-right: .25rem; }
@media (prefers-reduced-motion: reduce) {
.slide-in.visible,.venue-images img, .btn, .btn::after, .package { transition: none; }
}
/* @media (prefers-reduced-motion:reduce) {
.slide-in.visible,.venue-images img,.btn { transition:none; }
} */