846 lines
24 KiB
HTML
846 lines
24 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="id" data-theme="dark">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>WebGIS Portal — Sistem Informasi Geografis</title>
|
|
<meta name="description"
|
|
content="Portal WebGIS — Direktori modul dan proyek akhir mata kuliah Sistem Informasi Geografis.">
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap"
|
|
rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
|
|
<style>
|
|
/* ══ DESIGN TOKENS ══ */
|
|
:root {
|
|
--font-sans: 'Inter', sans-serif;
|
|
--font-display: 'Space Grotesk', sans-serif;
|
|
--ease: cubic-bezier(0.4, 0, 0.2, 1);
|
|
--transition: all 0.25s var(--ease);
|
|
}
|
|
|
|
/* ══ DARK THEME (default) ══ */
|
|
[data-theme="dark"] {
|
|
--bg-page: #0A0F1E;
|
|
--bg-surface: #111827;
|
|
--bg-card: #141D2F;
|
|
--bg-card-hover: #1A2540;
|
|
--border: rgba(255, 255, 255, 0.07);
|
|
--border-hover: rgba(99, 102, 241, 0.5);
|
|
--text-primary: #F1F5F9;
|
|
--text-secondary: #94A3B8;
|
|
--text-muted: #64748B;
|
|
--primary: #6366F1;
|
|
--primary-glow: rgba(99, 102, 241, 0.25);
|
|
--accent: #06B6D4;
|
|
--accent-2: #10B981;
|
|
--accent-3: #F43F5E;
|
|
--nav-bg: rgba(10, 15, 30, 0.85);
|
|
--glass: rgba(17, 24, 39, 0.8);
|
|
--shine: rgba(255, 255, 255, 0.03);
|
|
--shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
|
|
--shadow-glow: 0 0 40px rgba(99, 102, 241, 0.15);
|
|
--gradient-hero: linear-gradient(135deg, #0A0F1E 0%, #111827 50%, #0D1B2E 100%);
|
|
--dot-color: rgba(255, 255, 255, 0.04);
|
|
}
|
|
|
|
/* ══ LIGHT THEME ══ */
|
|
[data-theme="light"] {
|
|
--bg-page: #F0F4FF;
|
|
--bg-surface: #FFFFFF;
|
|
--bg-card: #FFFFFF;
|
|
--bg-card-hover: #F8FAFF;
|
|
--border: #E2E8F0;
|
|
--border-hover: #6366F1;
|
|
--text-primary: #0F172A;
|
|
--text-secondary: #475569;
|
|
--text-muted: #94A3B8;
|
|
--primary: #4F46E5;
|
|
--primary-glow: rgba(79, 70, 229, 0.12);
|
|
--accent: #0891B2;
|
|
--accent-2: #059669;
|
|
--accent-3: #E11D48;
|
|
--nav-bg: rgba(240, 244, 255, 0.9);
|
|
--glass: rgba(255, 255, 255, 0.9);
|
|
--shine: rgba(255, 255, 255, 0.5);
|
|
--shadow-card: 0 4px 24px rgba(79, 70, 229, 0.08);
|
|
--shadow-glow: 0 0 40px rgba(79, 70, 229, 0.1);
|
|
--gradient-hero: linear-gradient(135deg, #EEF2FF 0%, #F0F4FF 50%, #E8F4FF 100%);
|
|
--dot-color: rgba(79, 70, 229, 0.04);
|
|
}
|
|
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
body {
|
|
font-family: var(--font-sans);
|
|
background: var(--bg-page);
|
|
color: var(--text-primary);
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
-webkit-font-smoothing: antialiased;
|
|
transition: background 0.3s var(--ease), color 0.3s var(--ease);
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
/* ── Dot grid background ── */
|
|
body::before {
|
|
content: '';
|
|
position: fixed;
|
|
inset: 0;
|
|
background-image: radial-gradient(circle, var(--dot-color) 1px, transparent 1px);
|
|
background-size: 32px 32px;
|
|
pointer-events: none;
|
|
z-index: 0;
|
|
}
|
|
|
|
/* ── Ambient glow orbs ── */
|
|
.orb {
|
|
position: fixed;
|
|
border-radius: 50%;
|
|
filter: blur(120px);
|
|
pointer-events: none;
|
|
z-index: 0;
|
|
transition: opacity 0.4s;
|
|
}
|
|
|
|
.orb-1 {
|
|
width: 500px;
|
|
height: 500px;
|
|
background: var(--primary-glow);
|
|
top: -100px;
|
|
left: -100px;
|
|
opacity: 0.6;
|
|
}
|
|
|
|
.orb-2 {
|
|
width: 400px;
|
|
height: 400px;
|
|
background: rgba(6, 182, 212, 0.1);
|
|
bottom: -80px;
|
|
right: -80px;
|
|
opacity: 0.5;
|
|
}
|
|
|
|
/* ── Navbar ── */
|
|
.navbar {
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 100;
|
|
width: 100%;
|
|
background: var(--nav-bg);
|
|
backdrop-filter: blur(20px);
|
|
-webkit-backdrop-filter: blur(20px);
|
|
border-bottom: 1px solid var(--border);
|
|
padding: 0 32px;
|
|
height: 64px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.navbar-brand {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
font-family: var(--font-display);
|
|
font-size: 1.1rem;
|
|
font-weight: 700;
|
|
color: var(--text-primary);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.brand-icon {
|
|
width: 36px;
|
|
height: 36px;
|
|
background: linear-gradient(135deg, var(--primary), var(--accent));
|
|
border-radius: 10px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 0.95rem;
|
|
color: white;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.navbar-right {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
|
|
.nav-pill {
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border);
|
|
border-radius: 20px;
|
|
padding: 4px 14px;
|
|
font-size: 0.75rem;
|
|
font-weight: 600;
|
|
color: var(--text-muted);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
}
|
|
|
|
/* ── Theme toggle ── */
|
|
.theme-toggle {
|
|
width: 40px;
|
|
height: 40px;
|
|
border-radius: 10px;
|
|
border: 1px solid var(--border);
|
|
background: var(--bg-card);
|
|
color: var(--text-secondary);
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 1rem;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.theme-toggle:hover {
|
|
background: var(--primary);
|
|
border-color: var(--primary);
|
|
color: white;
|
|
transform: rotate(15deg);
|
|
}
|
|
|
|
/* ── Hero section ── */
|
|
.hero {
|
|
position: relative;
|
|
z-index: 1;
|
|
text-align: center;
|
|
padding: 80px 24px 60px;
|
|
}
|
|
|
|
.hero-badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 6px 16px;
|
|
border-radius: 100px;
|
|
background: var(--primary-glow);
|
|
border: 1px solid var(--border-hover);
|
|
font-size: 0.75rem;
|
|
font-weight: 600;
|
|
color: var(--primary);
|
|
letter-spacing: 0.06em;
|
|
text-transform: uppercase;
|
|
margin-bottom: 24px;
|
|
animation: fadeSlideDown 0.5s var(--ease) both;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-family: var(--font-display);
|
|
font-size: clamp(2.2rem, 5vw, 3.8rem);
|
|
font-weight: 800;
|
|
line-height: 1.1;
|
|
letter-spacing: -0.03em;
|
|
margin-bottom: 20px;
|
|
animation: fadeSlideDown 0.5s var(--ease) 0.05s both;
|
|
}
|
|
|
|
.hero h1 .gradient-text {
|
|
background: linear-gradient(135deg, var(--primary), var(--accent));
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
}
|
|
|
|
.hero p {
|
|
font-size: 1.1rem;
|
|
color: var(--text-secondary);
|
|
max-width: 560px;
|
|
margin: 0 auto 48px;
|
|
line-height: 1.7;
|
|
animation: fadeSlideDown 0.5s var(--ease) 0.1s both;
|
|
}
|
|
|
|
/* ── Stats bar ── */
|
|
.stats-bar {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 32px;
|
|
margin-bottom: 64px;
|
|
animation: fadeSlideDown 0.5s var(--ease) 0.15s both;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.stat-item {
|
|
text-align: center;
|
|
}
|
|
|
|
.stat-value {
|
|
font-family: var(--font-display);
|
|
font-size: 1.8rem;
|
|
font-weight: 700;
|
|
color: var(--text-primary);
|
|
line-height: 1;
|
|
}
|
|
|
|
.stat-label {
|
|
font-size: 0.75rem;
|
|
color: var(--text-muted);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
.stat-divider {
|
|
width: 1px;
|
|
height: 40px;
|
|
background: var(--border);
|
|
}
|
|
|
|
/* ── Grid ── */
|
|
.grid-section {
|
|
position: relative;
|
|
z-index: 1;
|
|
width: 100%;
|
|
max-width: 1100px;
|
|
margin: 0 auto;
|
|
padding: 0 24px 80px;
|
|
}
|
|
|
|
.section-label {
|
|
font-size: 0.75rem;
|
|
font-weight: 700;
|
|
color: var(--text-muted);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.1em;
|
|
margin-bottom: 24px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
|
|
.section-label::after {
|
|
content: '';
|
|
flex: 1;
|
|
height: 1px;
|
|
background: var(--border);
|
|
}
|
|
|
|
.grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 20px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
/* ── Card ── */
|
|
.card {
|
|
background: var(--bg-card);
|
|
border: 1px solid var(--border);
|
|
border-radius: 20px;
|
|
padding: 28px;
|
|
text-decoration: none;
|
|
color: inherit;
|
|
display: flex;
|
|
flex-direction: column;
|
|
box-shadow: var(--shadow-card);
|
|
transition: var(--transition);
|
|
position: relative;
|
|
overflow: hidden;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.card::before {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
background: var(--shine);
|
|
border-radius: inherit;
|
|
opacity: 0;
|
|
transition: opacity 0.3s;
|
|
}
|
|
|
|
.card:hover {
|
|
transform: translateY(-6px);
|
|
border-color: var(--border-hover);
|
|
box-shadow: var(--shadow-glow), var(--shadow-card);
|
|
background: var(--bg-card-hover);
|
|
}
|
|
|
|
.card:hover::before {
|
|
opacity: 1;
|
|
}
|
|
|
|
/* Number badge */
|
|
.card-num {
|
|
position: absolute;
|
|
top: 20px;
|
|
right: 20px;
|
|
font-family: var(--font-display);
|
|
font-size: 4rem;
|
|
font-weight: 900;
|
|
color: var(--border);
|
|
line-height: 1;
|
|
letter-spacing: -0.05em;
|
|
transition: var(--transition);
|
|
user-select: none;
|
|
}
|
|
|
|
.card:hover .card-num {
|
|
color: var(--primary-glow);
|
|
}
|
|
|
|
.card-icon-wrap {
|
|
width: 52px;
|
|
height: 52px;
|
|
border-radius: 14px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 1.4rem;
|
|
margin-bottom: 24px;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.card:hover .card-icon-wrap {
|
|
transform: scale(1.08);
|
|
}
|
|
|
|
/* Card themes */
|
|
.card[data-type="p01"] .card-icon-wrap {
|
|
background: rgba(99, 102, 241, 0.15);
|
|
color: #818CF8;
|
|
}
|
|
|
|
.card[data-type="p02"] .card-icon-wrap {
|
|
background: rgba(6, 182, 212, 0.15);
|
|
color: #22D3EE;
|
|
}
|
|
|
|
.card[data-type="p03"] .card-icon-wrap {
|
|
background: rgba(16, 185, 129, 0.15);
|
|
color: #34D399;
|
|
}
|
|
|
|
.card[data-type="uas"] .card-icon-wrap {
|
|
background: rgba(244, 63, 94, 0.15);
|
|
color: #FB7185;
|
|
}
|
|
|
|
.card-tag {
|
|
font-size: 0.7rem;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.1em;
|
|
color: var(--text-muted);
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.card-title {
|
|
font-family: var(--font-display);
|
|
font-size: 1.25rem;
|
|
font-weight: 700;
|
|
color: var(--text-primary);
|
|
margin-bottom: 10px;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
.card-desc {
|
|
font-size: 0.875rem;
|
|
color: var(--text-secondary);
|
|
line-height: 1.6;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.card-footer {
|
|
margin-top: 24px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
font-size: 0.85rem;
|
|
font-weight: 600;
|
|
color: var(--primary);
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.card-footer .arrow {
|
|
width: 24px;
|
|
height: 24px;
|
|
border-radius: 6px;
|
|
background: var(--primary-glow);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 0.7rem;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.card:hover .card-footer {
|
|
color: var(--primary);
|
|
}
|
|
|
|
.card:hover .card-footer .arrow {
|
|
background: var(--primary);
|
|
color: white;
|
|
transform: translateX(3px);
|
|
}
|
|
|
|
/* ── Final (UAS) card — full-width special ── */
|
|
.card-uas {
|
|
grid-column: 1 / -1;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: 32px;
|
|
background: linear-gradient(135deg, var(--primary) 0%, #4338CA 100%);
|
|
border-color: transparent;
|
|
padding: 36px 40px;
|
|
}
|
|
|
|
.card-uas::before {
|
|
background: rgba(255, 255, 255, 0.05);
|
|
}
|
|
|
|
.card-uas:hover {
|
|
background: var(--bg-card-hover);
|
|
border-color: var(--border-hover);
|
|
}
|
|
|
|
.card-uas .card-icon-wrap {
|
|
background: rgba(255, 255, 255, 0.15);
|
|
color: white;
|
|
width: 64px;
|
|
height: 64px;
|
|
font-size: 1.8rem;
|
|
flex-shrink: 0;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.card-uas:hover .card-icon-wrap {
|
|
background: rgba(244, 63, 94, 0.15);
|
|
color: #FB7185;
|
|
}
|
|
|
|
.card-uas .card-tag {
|
|
color: rgba(255, 255, 255, 0.6);
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.card-uas:hover .card-tag {
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.card-uas .card-title {
|
|
color: white;
|
|
font-size: 1.6rem;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.card-uas:hover .card-title {
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.card-uas .card-desc {
|
|
color: rgba(255, 255, 255, 0.8);
|
|
font-size: 1rem;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.card-uas:hover .card-desc {
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.card-uas .card-footer {
|
|
color: white;
|
|
margin-top: 0;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.card-uas:hover .card-footer {
|
|
color: var(--primary);
|
|
}
|
|
|
|
.card-uas .card-num {
|
|
color: rgba(255, 255, 255, 0.08);
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.card-uas:hover .card-num {
|
|
color: var(--primary-glow);
|
|
}
|
|
|
|
.card-uas .card-footer .arrow {
|
|
background: rgba(255, 255, 255, 0.2);
|
|
color: white;
|
|
transition: var(--transition);
|
|
}
|
|
|
|
.card-uas:hover .card-footer .arrow {
|
|
background: var(--primary);
|
|
color: white;
|
|
}
|
|
|
|
.card-uas-text {
|
|
flex: 1;
|
|
}
|
|
|
|
/* ── Footer ── */
|
|
.footer {
|
|
position: relative;
|
|
z-index: 1;
|
|
margin-top: auto;
|
|
padding: 24px 32px;
|
|
border-top: 1px solid var(--border);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
font-size: 0.8rem;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
/* ══ ANIMATIONS ══ */
|
|
@keyframes fadeSlideDown {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(-12px);
|
|
}
|
|
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
.card {
|
|
animation: fadeSlideUp 0.5s var(--ease) both;
|
|
}
|
|
|
|
.card:nth-child(1) {
|
|
animation-delay: 0.15s;
|
|
}
|
|
|
|
.card:nth-child(2) {
|
|
animation-delay: 0.2s;
|
|
}
|
|
|
|
.card:nth-child(3) {
|
|
animation-delay: 0.25s;
|
|
}
|
|
|
|
.card:nth-child(4) {
|
|
animation-delay: 0.3s;
|
|
}
|
|
|
|
@keyframes fadeSlideUp {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(20px);
|
|
}
|
|
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
/* ══ RESPONSIVE ══ */
|
|
@media (max-width: 900px) {
|
|
.grid {
|
|
grid-template-columns: 1fr 1fr;
|
|
}
|
|
|
|
.card-uas {
|
|
flex-direction: column;
|
|
text-align: center;
|
|
}
|
|
|
|
.card-uas .card-footer {
|
|
justify-content: center;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
.grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.navbar {
|
|
padding: 0 16px;
|
|
}
|
|
|
|
.hero {
|
|
padding: 48px 16px 40px;
|
|
}
|
|
|
|
.stats-bar {
|
|
gap: 20px;
|
|
}
|
|
|
|
.stat-divider {
|
|
display: none;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<!-- Ambient orbs -->
|
|
<div class="orb orb-1"></div>
|
|
<div class="orb orb-2"></div>
|
|
|
|
<!-- Navbar -->
|
|
<nav class="navbar">
|
|
<a href="#" class="navbar-brand">
|
|
<div class="brand-icon"><i class="fas fa-map-marked-alt"></i></div>
|
|
WebGIS Portal
|
|
</a>
|
|
<div class="navbar-right">
|
|
<span class="nav-pill">SIG 2025/2026</span>
|
|
<button class="theme-toggle" id="themeToggle" title="Toggle tema" aria-label="Toggle dark/light mode">
|
|
<i class="fas fa-moon" id="themeIcon"></i>
|
|
</button>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- Hero -->
|
|
<section class="hero">
|
|
<div class="hero-badge">
|
|
<i class="fas fa-satellite-dish"></i>
|
|
Sistem Informasi Geografis
|
|
</div>
|
|
<h1>
|
|
Direktori Proyek<br>
|
|
<span class="gradient-text">WebGIS Interaktif</span>
|
|
</h1>
|
|
<p>Kumpulan modul pembelajaran dan proyek akhir mata kuliah Sistem Informasi Geografis. Pilih modul untuk
|
|
memulai eksplorasi.</p>
|
|
|
|
<div class="stats-bar">
|
|
<div class="stat-item">
|
|
<div class="stat-value">3</div>
|
|
<div class="stat-label">Modul Praktikum</div>
|
|
</div>
|
|
<div class="stat-divider"></div>
|
|
<div class="stat-item">
|
|
<div class="stat-value">1</div>
|
|
<div class="stat-label">Proyek Akhir</div>
|
|
</div>
|
|
<div class="stat-divider"></div>
|
|
<div class="stat-item">
|
|
<div class="stat-value">GIS</div>
|
|
<div class="stat-label">Teknologi</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Grid -->
|
|
<div class="grid-section">
|
|
<div class="section-label">Modul Pembelajaran</div>
|
|
|
|
<div class="grid">
|
|
<!-- Pertemuan 01 -->
|
|
<a href="01/frontend/" class="card" data-type="p01">
|
|
<span class="card-num">01</span>
|
|
<div class="card-icon-wrap">
|
|
<i class="fas fa-draw-polygon"></i>
|
|
</div>
|
|
<div class="card-tag">Pertemuan 01</div>
|
|
<h2 class="card-title">Geometri Dasar</h2>
|
|
<p class="card-desc">Menggambar dan mengelola geometri spasial: titik (SPBU), garis (Jalan), dan poligon
|
|
(Kavling) dengan operasi CRUD.</p>
|
|
<div class="card-footer">
|
|
Buka Modul
|
|
<div class="arrow"><i class="fas fa-arrow-right"></i></div>
|
|
</div>
|
|
</a>
|
|
|
|
<!-- Pertemuan 02 -->
|
|
<a href="02/frontend/" class="card" data-type="p02">
|
|
<span class="card-num">02</span>
|
|
<div class="card-icon-wrap">
|
|
<i class="fas fa-route"></i>
|
|
</div>
|
|
<div class="card-tag">Pertemuan 02</div>
|
|
<h2 class="card-title">Haversine & Tematik</h2>
|
|
<p class="card-desc">Pemetaan sosial dengan analisis radius jarak Haversine dan visualisasi tematik data
|
|
kemiskinan penduduk.</p>
|
|
<div class="card-footer">
|
|
Buka Modul
|
|
<div class="arrow"><i class="fas fa-arrow-right"></i></div>
|
|
</div>
|
|
</a>
|
|
|
|
<!-- Pertemuan 03 -->
|
|
<a href="03/frontend/" class="card" data-type="p03">
|
|
<span class="card-num">03</span>
|
|
<div class="card-icon-wrap">
|
|
<i class="fas fa-layer-group"></i>
|
|
</div>
|
|
<div class="card-tag">Pertemuan 03</div>
|
|
<h2 class="card-title">Analisis Spasial</h2>
|
|
<p class="card-desc">Choropleth Map dinamis berbasis Point-in-Polygon — pewarnaan otomatis area kavling
|
|
oleh kepadatan warga miskin.</p>
|
|
<div class="card-footer">
|
|
Buka Modul
|
|
<div class="arrow"><i class="fas fa-arrow-right"></i></div>
|
|
</div>
|
|
</a>
|
|
|
|
<!-- Final UAS -->
|
|
<a href="webgis_app/" class="card card-uas" data-type="uas">
|
|
<span class="card-num">UAS</span>
|
|
<div class="card-icon-wrap">
|
|
<i class="fas fa-laptop-code"></i>
|
|
</div>
|
|
<div class="card-uas-text">
|
|
<div class="card-tag">Proyek Akhir — Final UAS</div>
|
|
<h2 class="card-title">Smart City WebGIS</h2>
|
|
<p class="card-desc">Sistem komprehensif manajemen kawasan kota dengan dashboard analitik,
|
|
autentikasi peran, dan visualisasi peta interaktif real-time.</p>
|
|
<div class="card-footer" style="margin-top:20px;">
|
|
Buka Aplikasi
|
|
<div class="arrow"><i class="fas fa-arrow-right"></i></div>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Footer -->
|
|
<footer class="footer">
|
|
<span>D1041231071 — Naufal Zaky Ramadhan</span>
|
|
<span>Sistem Informasi Geografis © 2025</span>
|
|
</footer>
|
|
|
|
<script>
|
|
// ── Theme toggle ──
|
|
const html = document.documentElement;
|
|
const btn = document.getElementById('themeToggle');
|
|
const icon = document.getElementById('themeIcon');
|
|
|
|
// Persist preference
|
|
const saved = localStorage.getItem('portal-theme') || 'dark';
|
|
setTheme(saved);
|
|
|
|
btn.addEventListener('click', () => {
|
|
const next = html.getAttribute('data-theme') === 'dark' ? 'light' : 'dark';
|
|
setTheme(next);
|
|
localStorage.setItem('portal-theme', next);
|
|
});
|
|
|
|
function setTheme(t) {
|
|
html.setAttribute('data-theme', t);
|
|
icon.className = t === 'dark' ? 'fas fa-sun' : 'fas fa-moon';
|
|
btn.title = t === 'dark' ? 'Beralih ke Mode Terang' : 'Beralih ke Mode Gelap';
|
|
}
|
|
</script>
|
|
</body>
|
|
|
|
</html> |