Skip to content

Commit b8e0d55

Browse files
committed
add: live page
1 parent 9d570a0 commit b8e0d55

File tree

3 files changed

+496
-1
lines changed

3 files changed

+496
-1
lines changed

app/globals.css

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,3 +176,59 @@
176176
height: 100%;
177177
border-left: 1px solid #1a3844;
178178
}
179+
180+
.progress-bar {
181+
border-radius: 4rem 2rem;
182+
183+
/* to center the percentage value */
184+
display: flex;
185+
justify-content: center;
186+
align-items: center;
187+
188+
transition: all 1s ease-in;
189+
}
190+
191+
.timer-content {
192+
border-radius: 4rem 2rem;
193+
}
194+
195+
.timer {
196+
background: linear-gradient(
197+
90deg,
198+
#145666 -1.9%,
199+
#3ebbb7 26.76%,
200+
#f7b141 66.19%,
201+
#f55f2f 100%
202+
),
203+
linear-gradient(0deg, #ffffff, #ffffff);
204+
background-clip: text;
205+
-webkit-background-clip: text;
206+
-webkit-text-fill-color: transparent;
207+
}
208+
209+
.agenda-class {
210+
/* border-bottom: 1px solid #3ebbb7; */
211+
position: sticky;
212+
z-index: 2;
213+
padding-right: 1rem;
214+
background: #0f2832;
215+
}
216+
217+
.agenda-class:after {
218+
line-height: 0.1em;
219+
content: "";
220+
position: absolute;
221+
bottom: calc(50%);
222+
left: 30%;
223+
width: 60%;
224+
border-bottom: 1px solid #3ebbb7;
225+
z-index: -1;
226+
}
227+
228+
* {
229+
scroll-behavior: smooth;
230+
}
231+
232+
.opaque-sheet {
233+
background: linear-gradient(180deg, transparent, rgba(15, 40, 50, 1));
234+
}

0 commit comments

Comments
 (0)