Redirecting to login

/* ===== MOBILE FRAME ===== */ #app-frame { width: 412px; min-height: 917px; margin: 16px auto; background: var(--surface); position: relative; overflow: hidden; border-radius: 24px; box-shadow: 0 8px 32px rgba(0, 0, 0, .18); } /* ===== TYPOGRAPHY (M3 scale subset) ===== */ .display-large { font-size: 2.25rem; font-weight: 700; line-height: 1.12; letter-spacing: -0.25px; } .headline-medium { font-size: 1.75rem; font-weight: 700; line-height: 1.28; } .title-large { font-size: 1.375rem; font-weight: 700; line-height: 1.27; } .title-medium { font-size: 1rem; font-weight: 600; line-height: 1.5; letter-spacing: .15px; } .body-large { font-size: 1rem; font-weight: 400; line-height: 1.5; letter-spacing: .5px; } .body-medium { font-size: .875rem; font-weight: 400; line-height: 1.43; letter-spacing: .25px; } .label-large { font-size: .875rem; font-weight: 600; line-height: 1.43; letter-spacing: .1px; } /* ===== TOP APP BAR ===== */ .top-app-bar { display: flex; align-items: center; justify-content: space-between; height: 64px; padding: 0 16px; background: var(--surface); position: sticky; top: 0; z-index: 100; } .top-app-bar .leading, .top-app-bar .trailing { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; cursor: pointer; border-radius: var(--radius-full); transition: background .2s; } .top-app-bar .leading:hover, .top-app-bar .trailing:hover { background: var(--surface-variant); } .top-app-bar .bar-title { font-weight: 700; font-size: 1.125rem; color: var(--primary); } .top-app-bar .avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--primary-container); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .75rem; color: var(--on-primary-container); } /* ===== BOTTOM NAVIGATION ===== */ .bottom-nav { display: flex; justify-content: space-around; align-items: center; height: 80px; background: var(--surface); border-top: 1px solid var(--surface-variant); position: sticky; bottom: 0; z-index: 100; } .bottom-nav .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; cursor: pointer; padding: 8px 20px; border-radius: var(--radius-lg); transition: background .2s; text-decoration: none; color: var(--on-surface-variant); position: relative; } .bottom-nav .nav-item:hover { background: var(--surface-variant); } .bottom-nav .nav-item.active { color: var(--primary); } .bottom-nav .nav-item.active .nav-indicator { position: absolute; top: 4px; width: 56px; height: 32px; border-radius: var(--radius-full); background: var(--primary-container); z-index: -1; } .bottom-nav .nav-item .nav-label { font-size: .75rem; font-weight: 500; } /* ===== SCREEN CONTAINERS ===== */ .screen { display: none; flex-direction: column; min-height: calc(917px - 64px - 80px); } .screen.active { display: flex; } .screen-scroll { flex: 1; overflow-y: auto; padding: 0 16px 24px; } /* ===== SIGN-IN SCREEN ===== */ #screen-signin { min-height: 917px; justify-content: center; align-items: center; padding: 32px 24px; gap: 16px; background: linear-gradient(180deg, var(--surface) 0%, #E8F0FE 100%); } .signin-logo { width: 80px; height: 80px; border-radius: 20px; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; overflow: hidden; } .signin-logo img { width: 100%; height: 100%; object-fit: contain; } .signin-subtitle { color: var(--on-surface-variant); text-align: center; max-width: 300px; } /* ===== M3 TEXT FIELD ===== */ .m3-textfield { position: relative; width: 100%; max-width: 340px; } .m3-textfield input { width: 100%; height: 56px; border: none; border-bottom: 2px solid var(--outline); border-radius: var(--radius-sm) var(--radius-sm) 0 0; background: var(--surface-variant); padding: 20px 48px 6px 16px; font-size: 1rem; font-family: inherit; color: var(--on-surface); outline: none; transition: border-color .2s; } .m3-textfield input:focus { border-color: var(--primary); } .m3-textfield label { position: absolute; left: 16px; top: 16px; font-size: 1rem; color: var(--on-surface-variant); pointer-events: none; transition: all .2s; } .m3-textfield input:focus+label, .m3-textfield input:not(:placeholder-shown)+label { top: 6px; font-size: .75rem; color: var(--primary); } .m3-textfield .trailing-icon { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); cursor: pointer; color: var(--on-surface-variant); user-select: none; } /* ===== BUTTONS ===== */ .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 48px; padding: 0 24px; border: none; border-radius: var(--radius-full); font-family: inherit; font-weight: 600; font-size: .875rem; letter-spacing: .1px; cursor: pointer; transition: all .2s; } .btn-primary { background: var(--primary); color: var(--on-primary); box-shadow: var(--elevation-1); } .btn-primary:hover { box-shadow: var(--elevation-2); filter: brightness(1.08); } .btn-teal { background: var(--secondary); color: var(--on-secondary); box-shadow: var(--elevation-1); } .btn-teal:hover { box-shadow: var(--elevation-2); filter: brightness(1.08); } .btn-text { background: transparent; color: var(--primary); padding: 0 12px; height: 40px; } .btn-text:hover { background: rgba(13, 71, 161, .08); } .btn-outlined { background: transparent; border: 1px solid var(--outline); color: var(--primary); } .btn-outlined:hover { background: rgba(13, 71, 161, .06); } .btn-container { background: var(--primary-container); color: var(--on-primary-container); box-shadow: var(--elevation-1); } .btn-container:hover { box-shadow: var(--elevation-2); filter: brightness(.97); } .btn-full { width: 100%; max-width: 340px; } .btn-fab { height: 56px; padding: 0 20px; border-radius: var(--radius-lg); font-size: .9375rem; box-shadow: 0 3px 8px rgba(0, 0, 0, .2); } .btn:disabled { opacity: .45; cursor: not-allowed; box-shadow: none; } /* ===== CARDS ===== */ .card-elevated { background: var(--surface); border-radius: var(--radius-lg); box-shadow: var(--elevation-2); overflow: hidden; } .card-outlined { background: var(--surface); border: 1px solid var(--outline); border-radius: var(--radius-lg); overflow: hidden; } .card-body { padding: 16px; } /* ===== HOMEPAGE ===== */ .welcome-text { padding: 4px 0 12px; } .ongoing-card { margin-bottom: 20px; position: relative; } .map-placeholder { width: 100%; height: 200px; background: linear-gradient(135deg, #C8E6C9 0%, #E8F5E9 40%, #B2DFDB 100%); position: relative; overflow: hidden; } .map-placeholder::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(0, 0, 0, .04) 60px, rgba(0, 0, 0, .04) 61px), repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(0, 0, 0, .04) 60px, rgba(0, 0, 0, .04) 61px); } .map-label { position: absolute; top: 12px; left: 12px; background: rgba(255, 255, 255, .9); padding: 4px 10px; border-radius: var(--radius-sm); font-size: .75rem; font-weight: 600; color: var(--on-surface); } .geofence-ring { position: absolute; width: 120px; height: 120px; border: 3px solid var(--tertiary); border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); background: rgba(77, 208, 225, .12); } .pulse-dot { position: absolute; width: 16px; height: 16px; background: var(--tertiary); border: 3px solid #fff; border-radius: 50%; top: 26%; left: 36%; box-shadow: 0 0 0 0 rgba(77, 208, 225, .5); animation: pulse 2s infinite; } @keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(77, 208, 225, .5); } 70% { box-shadow: 0 0 0 14px rgba(77, 208, 225, 0); } 100% { box-shadow: 0 0 0 0 rgba(77, 208, 225, 0); } } .ongoing-status { display: flex; align-items: center; gap: 8px; padding: 10px 16px; font-size: .8125rem; color: var(--secondary); font-weight: 500; } .ongoing-status .status-dot { width: 8px; height: 8px; background: var(--tertiary); border-radius: 50%; animation: pulse 2s infinite; } .ongoing-fab-area { padding: 0 16px 16px; display: flex; justify-content: center; } /* horizontal scroll */ .hscroll { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; } .hscroll::-webkit-scrollbar { height: 4px; } .hscroll::-webkit-scrollbar-thumb { background: var(--outline); border-radius: 2px; } .hscroll .event-card-sm { min-width: 220px; scroll-snap-align: start; flex-shrink: 0; } .event-thumb { width: 100%; height: 110px; background: linear-gradient(135deg, var(--primary-container), #B3D4FC); display: flex; align-items: center; justify-content: center; } .event-thumb .material-symbols-outlined { font-size: 40px; color: var(--primary); opacity: .5; } .event-card-sm .card-body { padding: 12px; } .event-card-sm .card-body .title-medium { margin-bottom: 4px; } .event-card-sm .card-body .body-medium { color: var(--on-surface-variant); margin-bottom: 8px; } .section-header { display: flex; align-items: center; justify-content: space-between; margin: 20px 0 12px; } /* Explore list */ .explore-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--surface-variant); } .explore-item:last-child { border-bottom: none; } .explore-icon { width: 48px; height: 48px; border-radius: var(--radius-md); background: var(--secondary-container); display: flex; align-items: center; justify-content: center; color: var(--secondary); } .explore-info { flex: 1; } .explore-info .body-medium { color: var(--on-surface-variant); } /* ===== SEARCH SCREEN ===== */ .search-bar { display: flex; align-items: center; gap: 8px; height: 52px; background: var(--surface-variant); border-radius: var(--radius-full); padding: 0 16px; margin-bottom: 12px; } .search-bar input { flex: 1; border: none; background: transparent; font-size: .9375rem; font-family: inherit; outline: none; color: var(--on-surface); } .search-bar .material-symbols-outlined { color: var(--on-surface-variant); cursor: pointer; } .chip-row { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px; margin-bottom: 8px; } .chip { display: inline-flex; align-items: center; height: 36px; padding: 0 16px; border: 1px solid var(--outline); border-radius: var(--radius-full); font-size: .8125rem; font-weight: 500; color: var(--on-surface-variant); background: transparent; white-space: nowrap; cursor: pointer; transition: all .2s; } .chip.active, .chip:hover { background: var(--secondary-container); border-color: var(--secondary); color: var(--on-secondary-container); } .search-result-card { margin-bottom: 14px; } .search-result-card .result-img { width: 100%; height: 160px; background: linear-gradient(135deg, #E1F5FE 0%, var(--primary-container) 100%); display: flex; align-items: center; justify-content: center; position: relative; } .search-result-card .result-img .material-symbols-outlined { font-size: 56px; color: var(--primary); opacity: .35; } .search-result-card .card-body .body-medium { color: var(--on-surface-variant); margin: 4px 0 6px; } .search-result-card .card-body .logistics { display: flex; align-items: center; gap: 4px; color: var(--on-surface-variant); font-size: .8125rem; margin-bottom: 12px; } .search-result-card .card-body .logistics .material-symbols-outlined { font-size: 16px; } /* ===== MY EVENTS SCREEN ===== */ .m3-tabs { display: flex; border-bottom: 1px solid var(--surface-variant); margin-bottom: 16px; } .m3-tabs .tab { flex: 1; display: flex; align-items: center; justify-content: center; height: 48px; font-size: .875rem; font-weight: 600; color: var(--on-surface-variant); cursor: pointer; position: relative; transition: color .2s; background: none; border: none; font-family: inherit; } .m3-tabs .tab.active { color: var(--primary); } .m3-tabs .tab.active::after { content: ''; position: absolute; bottom: 0; left: 20%; width: 60%; height: 3px; background: var(--primary); border-radius: 3px 3px 0 0; } .my-event-card { margin-bottom: 14px; display: flex; gap: 12px; padding: 14px; } .my-event-card .my-event-thumb { width: 72px; height: 72px; border-radius: var(--radius-md); background: linear-gradient(135deg, var(--primary-container), #B3D4FC); display: flex; align-items: center; justify-content: center; flex-shrink: 0; } .my-event-card .my-event-thumb .material-symbols-outlined { font-size: 32px; color: var(--primary); opacity: .45; } .my-event-info { flex: 1; display: flex; flex-direction: column; gap: 4px; } .my-event-info .body-medium { color: var(--on-surface-variant); } .status-badge { display: inline-flex; align-items: center; height: 26px; padding: 0 12px; border: 1.5px solid var(--secondary); border-radius: var(--radius-full); font-size: .75rem; font-weight: 600; color: var(--secondary); width: fit-content; } /* ===== EVENT DETAILS SCREEN ===== */ #screen-eventdetails .screen-scroll { padding: 0 0 100px; } .detail-banner { width: 100%; height: 220px; background: linear-gradient(135deg, #FFF9C4 0%, #FFECB3 40%, #FFE0B2 100%); display: flex; align-items: center; justify-content: center; position: relative; } .detail-banner .material-symbols-outlined { font-size: 72px; color: #F57C00; opacity: .3; } .detail-section { padding: 16px 16px 0; } .detail-section .headline-medium { margin-bottom: 8px; } .logistics-card { display: flex; flex-direction: column; gap: 10px; padding: 16px; margin: 12px 16px; } .logistics-row { display: flex; align-items: center; gap: 12px; } .logistics-row .material-symbols-outlined { color: var(--primary); font-size: 22px; } .logistics-row .body-medium { color: var(--on-surface-variant); } .class-code-notice { display: flex; align-items: center; gap: 8px; background: #FFF3E0; padding: 10px 14px; border-radius: var(--radius-sm); font-size: .8125rem; color: #E65100; margin: 8px 0 12px; } .class-code-notice .material-symbols-outlined { font-size: 20px; } .class-select { width: 100%; height: 52px; border: 1px solid var(--outline); border-radius: var(--radius-sm); padding: 0 16px; font-family: inherit; font-size: .9375rem; color: var(--on-surface); background: var(--surface); appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%2373777F' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; } .detail-actions { display: flex; gap: 10px; margin: 12px 0; } .detail-fab-area { position: absolute; bottom: 80px; left: 0; right: 0; padding: 0 16px; display: flex; justify-content: center; z-index: 50; } /* ===== UTILITY ===== */ .gap-8 { gap: 8px; } .mb-4 { margin-bottom: 4px; } .mb-8 { margin-bottom: 8px; } .mt-8 { margin-top: 8px; } .text-center { text-align: center; } .flex-col { display: flex; flex-direction: column; } /* ===== SNACKBAR ===== */ .snackbar { position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%) translateY(80px); background: #323232; color: #fff; padding: 12px 24px; border-radius: var(--radius-sm); font-size: .875rem; z-index: 1000; opacity: 0; transition: all .3s; pointer-events: none; white-space: nowrap; } .snackbar.show { opacity: 1; transform: translateX(-50%) translateY(0); } /* ===== RESPONSIVE FALLBACK ===== */ @media (max-width: 440px) { #app-frame { width: 100%; min-height: 100vh; margin: 0; border-radius: 0; box-shadow: none; } } /* ===== RIPPLE ===== */ .ripple { position: relative; overflow: hidden; } .ripple::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(0, 0, 0, .08) 0%, transparent 60%); opacity: 0; transition: opacity .4s; } .ripple:active::after { opacity: 1; transition: opacity 0s; } /* ===== HISTORY TAB ITEMS ===== */ .history-badge { display: inline-flex; align-items: center; height: 26px; padding: 0 12px; border: 1.5px solid var(--outline); border-radius: var(--radius-full); font-size: .75rem; font-weight: 600; color: var(--on-surface-variant); width: fit-content; }

Welcome to NexuSphere

visibility
NexuSphere
A

Welcome, Alex!

Ongoing Event
UP Diliman Campus
Searching for Event Zone…
Upcoming Events
psychology

AI Ethics Workshop

May 15 • 4 PM – 6 PM PST

groups

Design Thinking 101

May 18 • 1 PM – 3 PM PST

code

Web Dev Bootcamp

May 22 • 10 AM – 4 PM PST

Explore Campus
school

Open University Day

Jun 1 • Main Auditorium

sports_esports

Gaming Tournament

Jun 5 • Student Center

palette

Art Exhibition

Jun 12 • Fine Arts Hall

volunteer_activism

Charity Fun Run

Jun 18 • University Oval

NexuSphere
A
design_services

NexuSphere Design Forum

May 15 • 4 PM – 6 PM PST

Registered
psychology

AI Ethics Workshop

May 15 • 4 PM – 6 PM PST

Registered
terminal

UP Campus Hackathon

May 15 – 18 • All Day

Registered
arrow_back
Event Details
A
celebration

Founders' Festival 2024

UP Diliman

calendar_today

May 15 – 18, 2024

4:00 PM – 10:00 PM PST

location_on

UP Diliman Sunken Garden

Quezon City, Metro Manila

my_location

Geofenced Venue

Attendance verified on-site

About this Event

A traditional annual celebration featuring float and lantern displays, cultural shows, academic presentations, and a variety of food and merchandise stalls across the UP Diliman campus. This year's theme highlights innovation and sustainability in Philippine education.

Tickets & Options

Price: PHP 150 (non-students)

info Class Code Required — This event tracks class attendance.

Discussion & Merchandise