689 lines
19 KiB
HTML
689 lines
19 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="id">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>WebGIS Portal — Devi Natalia</title>
|
|
<meta name="description" content="Portal WebGIS Devi Natalia — Sistem Informasi Geografis C, Kota Pontianak.">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;1,400&family=Plus+Jakarta+Sans:wght@700;800&display=swap"
|
|
rel="stylesheet">
|
|
<style>
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
:root {
|
|
--ink: #12153d;
|
|
--ink-mid: #3730a3;
|
|
--violet: #4f46e5;
|
|
--violet-lt: #818cf8;
|
|
--violet-xs: #eef2ff;
|
|
--slate: #64748b;
|
|
--border: #e8eaf6;
|
|
--surface: #ffffff;
|
|
--bg: #f7f8fd;
|
|
|
|
--c1: #4f46e5;
|
|
/* indigo — proj 02 */
|
|
--c1-lt: #eef2ff;
|
|
--c1-bd: #c7d2fe;
|
|
|
|
--c2: #0891b2;
|
|
/* cyan — proj 03 */
|
|
--c2-lt: #ecfeff;
|
|
--c2-bd: #a5f3fc;
|
|
|
|
--c3: #7c3aed;
|
|
/* purple — proj 04 */
|
|
--c3-lt: #f5f3ff;
|
|
--c3-bd: #ddd6fe;
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
background: var(--bg);
|
|
color: var(--ink);
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
/* ─────────── NAV ─────────── */
|
|
nav {
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 100;
|
|
background: rgba(247, 248, 253, 0.85);
|
|
backdrop-filter: blur(12px);
|
|
-webkit-backdrop-filter: blur(12px);
|
|
border-bottom: 1px solid var(--border);
|
|
padding: 0 2rem;
|
|
height: 52px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.nav-brand {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 9px;
|
|
}
|
|
|
|
.nav-dot {
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 50%;
|
|
background: var(--violet);
|
|
}
|
|
|
|
.nav-name {
|
|
font-size: 0.82rem;
|
|
font-weight: 600;
|
|
color: var(--ink);
|
|
letter-spacing: -0.01em;
|
|
}
|
|
|
|
.nav-badge {
|
|
font-size: 0.73rem;
|
|
color: var(--slate);
|
|
background: var(--violet-xs);
|
|
border: 1px solid var(--c1-bd);
|
|
border-radius: 5px;
|
|
padding: 2px 8px;
|
|
}
|
|
|
|
/* ─────────── HERO ─────────── */
|
|
.hero {
|
|
background: var(--ink);
|
|
position: relative;
|
|
overflow: hidden;
|
|
padding: 5.5rem 2rem 4.5rem;
|
|
text-align: center;
|
|
}
|
|
|
|
/* Subtle dot grid */
|
|
.hero::before {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
background-image: radial-gradient(rgba(129, 140, 248, 0.25) 1px, transparent 1px);
|
|
background-size: 28px 28px;
|
|
pointer-events: none;
|
|
}
|
|
|
|
/* Single soft glow */
|
|
.hero-glow {
|
|
position: absolute;
|
|
width: 560px;
|
|
height: 340px;
|
|
background: radial-gradient(ellipse, rgba(79, 70, 229, 0.35) 0%, transparent 70%);
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
pointer-events: none;
|
|
}
|
|
|
|
.hero-inner {
|
|
position: relative;
|
|
z-index: 2;
|
|
max-width: 640px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.hero-chip {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
border: 1px solid rgba(129, 140, 248, 0.3);
|
|
color: #a5b4fc;
|
|
font-size: 0.75rem;
|
|
font-weight: 500;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
border-radius: 999px;
|
|
padding: 0.3rem 1rem;
|
|
margin-bottom: 1.75rem;
|
|
}
|
|
|
|
.hero-chip-dot {
|
|
width: 5px;
|
|
height: 5px;
|
|
border-radius: 50%;
|
|
background: #818cf8;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-family: 'Plus Jakarta Sans', sans-serif;
|
|
font-size: clamp(1.9rem, 5.5vw, 3rem);
|
|
font-weight: 800;
|
|
line-height: 1.2;
|
|
color: #ffffff;
|
|
letter-spacing: -0.035em;
|
|
margin-bottom: 1.25rem;
|
|
}
|
|
|
|
.hero h1 em {
|
|
font-style: normal;
|
|
color: var(--violet-lt);
|
|
}
|
|
|
|
.hero-sub {
|
|
font-size: 0.975rem;
|
|
color: #94a3b8;
|
|
line-height: 1.7;
|
|
max-width: 480px;
|
|
margin: 0 auto 3rem;
|
|
}
|
|
|
|
/* Identity block */
|
|
.hero-id {
|
|
display: inline-flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 6px;
|
|
background: rgba(255, 255, 255, 0.04);
|
|
border: 1px solid rgba(129, 140, 248, 0.18);
|
|
border-radius: 14px;
|
|
padding: 1rem 2rem;
|
|
}
|
|
|
|
.hero-id-name {
|
|
font-family: 'Plus Jakarta Sans', sans-serif;
|
|
font-size: 1.05rem;
|
|
font-weight: 700;
|
|
color: #ffffff;
|
|
letter-spacing: -0.01em;
|
|
}
|
|
|
|
.hero-id-meta {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
font-size: 0.78rem;
|
|
color: #94a3b8;
|
|
}
|
|
|
|
.hero-id-sep {
|
|
color: rgba(148, 163, 184, 0.4);
|
|
}
|
|
|
|
/* ─────────── MAIN ─────────── */
|
|
main {
|
|
flex: 1;
|
|
max-width: 1080px;
|
|
margin: 0 auto;
|
|
width: 100%;
|
|
padding: 3.5rem 2rem 4rem;
|
|
}
|
|
|
|
.section-head {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
margin-bottom: 1.75rem;
|
|
}
|
|
|
|
.section-head-label {
|
|
font-size: 0.72rem;
|
|
font-weight: 600;
|
|
letter-spacing: 0.12em;
|
|
text-transform: uppercase;
|
|
color: var(--slate);
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.section-head-rule {
|
|
flex: 1;
|
|
height: 1px;
|
|
background: var(--border);
|
|
}
|
|
|
|
.section-head-count {
|
|
font-size: 0.72rem;
|
|
color: var(--slate);
|
|
white-space: nowrap;
|
|
}
|
|
|
|
/* ─────────── CARDS ─────────── */
|
|
.grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(295px, 1fr));
|
|
gap: 1.25rem;
|
|
}
|
|
|
|
.card {
|
|
background: var(--surface);
|
|
border-radius: 16px;
|
|
border: 1px solid var(--border);
|
|
text-decoration: none;
|
|
color: inherit;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
transition: transform 0.22s ease, box-shadow 0.22s ease;
|
|
position: relative;
|
|
}
|
|
|
|
.card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 16px 40px rgba(18, 21, 61, 0.09);
|
|
}
|
|
|
|
/* Top accent line */
|
|
.card-line {
|
|
height: 3px;
|
|
}
|
|
|
|
.c1 .card-line {
|
|
background: linear-gradient(90deg, var(--c1), #a5b4fc);
|
|
}
|
|
|
|
.c2 .card-line {
|
|
background: linear-gradient(90deg, var(--c2), #67e8f9);
|
|
}
|
|
|
|
.c3 .card-line {
|
|
background: linear-gradient(90deg, var(--c3), #c4b5fd);
|
|
}
|
|
|
|
.card-body {
|
|
padding: 1.6rem 1.6rem 1.4rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
}
|
|
|
|
.card-head {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
margin-bottom: 1.1rem;
|
|
}
|
|
|
|
.card-icon {
|
|
width: 44px;
|
|
height: 44px;
|
|
border-radius: 11px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 1.35rem;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.c1 .card-icon {
|
|
background: var(--c1-lt);
|
|
}
|
|
|
|
.c2 .card-icon {
|
|
background: var(--c2-lt);
|
|
}
|
|
|
|
.c3 .card-icon {
|
|
background: var(--c3-lt);
|
|
}
|
|
|
|
.card-num {
|
|
font-size: 0.7rem;
|
|
font-weight: 600;
|
|
letter-spacing: 0.1em;
|
|
text-transform: uppercase;
|
|
border-radius: 5px;
|
|
padding: 3px 8px;
|
|
}
|
|
|
|
.c1 .card-num {
|
|
color: var(--c1);
|
|
background: var(--c1-lt);
|
|
border: 1px solid var(--c1-bd);
|
|
}
|
|
|
|
.c2 .card-num {
|
|
color: var(--c2);
|
|
background: var(--c2-lt);
|
|
border: 1px solid var(--c2-bd);
|
|
}
|
|
|
|
.c3 .card-num {
|
|
color: var(--c3);
|
|
background: var(--c3-lt);
|
|
border: 1px solid var(--c3-bd);
|
|
}
|
|
|
|
.card-title {
|
|
font-family: 'Plus Jakarta Sans', sans-serif;
|
|
font-size: 1.08rem;
|
|
font-weight: 700;
|
|
line-height: 1.35;
|
|
margin-bottom: 0.6rem;
|
|
color: var(--ink);
|
|
letter-spacing: -0.01em;
|
|
}
|
|
|
|
.card-desc {
|
|
font-size: 0.875rem;
|
|
color: var(--slate);
|
|
line-height: 1.65;
|
|
flex: 1;
|
|
margin-bottom: 1.25rem;
|
|
}
|
|
|
|
.card-tags {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 5px;
|
|
margin-bottom: 1.25rem;
|
|
}
|
|
|
|
.tag {
|
|
font-size: 0.7rem;
|
|
font-weight: 500;
|
|
border-radius: 5px;
|
|
padding: 2px 7px;
|
|
}
|
|
|
|
.c1 .tag {
|
|
color: var(--c1);
|
|
background: var(--c1-lt);
|
|
}
|
|
|
|
.c2 .tag {
|
|
color: var(--c2);
|
|
background: var(--c2-lt);
|
|
}
|
|
|
|
.c3 .tag {
|
|
color: var(--c3);
|
|
background: var(--c3-lt);
|
|
}
|
|
|
|
.card-cta {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding-top: 1.1rem;
|
|
border-top: 1px solid var(--border);
|
|
}
|
|
|
|
.btn-open {
|
|
font-size: 0.82rem;
|
|
font-weight: 600;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
border-radius: 999px;
|
|
padding: 0.4rem 1rem;
|
|
border: 1px solid transparent;
|
|
transition: gap 0.2s, opacity 0.2s;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.c1 .btn-open {
|
|
color: var(--c1);
|
|
background: var(--c1-lt);
|
|
border-color: var(--c1-bd);
|
|
}
|
|
|
|
.c2 .btn-open {
|
|
color: var(--c2);
|
|
background: var(--c2-lt);
|
|
border-color: var(--c2-bd);
|
|
}
|
|
|
|
.c3 .btn-open {
|
|
color: var(--c3);
|
|
background: var(--c3-lt);
|
|
border-color: var(--c3-bd);
|
|
}
|
|
|
|
.card:hover .btn-open {
|
|
gap: 9px;
|
|
}
|
|
|
|
.btn-arrow {
|
|
display: inline-block;
|
|
transition: transform 0.2s;
|
|
}
|
|
|
|
.card:hover .btn-arrow {
|
|
transform: translateX(2px);
|
|
}
|
|
|
|
/* ─────────── FOOTER ─────────── */
|
|
footer {
|
|
background: var(--ink);
|
|
color: #64748b;
|
|
padding: 1.5rem 2rem;
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
.footer-inner {
|
|
max-width: 1080px;
|
|
margin: 0 auto;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
flex-wrap: wrap;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.footer-left {
|
|
color: #475569;
|
|
}
|
|
|
|
.footer-left strong {
|
|
color: #818cf8;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.footer-right {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
color: #475569;
|
|
}
|
|
|
|
.footer-nim {
|
|
background: rgba(129, 140, 248, 0.12);
|
|
border: 1px solid rgba(129, 140, 248, 0.2);
|
|
color: #818cf8;
|
|
border-radius: 5px;
|
|
padding: 1px 7px;
|
|
font-family: monospace;
|
|
font-size: 0.78rem;
|
|
}
|
|
|
|
/* ─────────── ANIMATION ─────────── */
|
|
@keyframes fadeUp {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(14px);
|
|
}
|
|
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
.hero-inner {
|
|
animation: fadeUp 0.55s ease both;
|
|
}
|
|
|
|
.card {
|
|
animation: fadeUp 0.45s ease both;
|
|
}
|
|
|
|
.card:nth-child(1) {
|
|
animation-delay: 0.08s;
|
|
}
|
|
|
|
.card:nth-child(2) {
|
|
animation-delay: 0.16s;
|
|
}
|
|
|
|
.card:nth-child(3) {
|
|
animation-delay: 0.24s;
|
|
}
|
|
|
|
@media (prefers-reduced-motion: reduce) {
|
|
|
|
.hero-inner,
|
|
.card {
|
|
animation: none;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
.hero {
|
|
padding: 4rem 1.25rem 3.5rem;
|
|
}
|
|
|
|
main {
|
|
padding: 2.5rem 1.25rem 3rem;
|
|
}
|
|
|
|
nav {
|
|
padding: 0 1.25rem;
|
|
}
|
|
|
|
.footer-inner {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<!-- ── HERO ── -->
|
|
<section class="hero">
|
|
<div class="hero-glow"></div>
|
|
<div class="hero-inner">
|
|
<div class="hero-chip">
|
|
<div class="hero-chip-dot"></div>
|
|
Sistem Informasi Geografis C
|
|
</div>
|
|
<h1>Website <em>Sistem Informasi</em><br>Geografis Kota Pontianak</h1>
|
|
<p class="hero-sub">Kumpulan proyek pemetaan digital interaktif — dari data kependudukan, infrastruktur
|
|
energi, hingga distribusi bantuan sosial.</p>
|
|
<div class="hero-id">
|
|
<span class="hero-id-name">Devi Natalia</span>
|
|
<div class="hero-id-meta">
|
|
<span>D1041231027</span>
|
|
<span class="hero-id-sep">·</span>
|
|
<span>Sistem Informasi Geografis C</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- ── PROJECTS ── -->
|
|
<main>
|
|
<div class="section-head">
|
|
<span class="section-head-label">Daftar Proyek</span>
|
|
<div class="section-head-rule"></div>
|
|
<span class="section-head-count">3 proyek</span>
|
|
</div>
|
|
|
|
<div class="grid">
|
|
|
|
<!-- Proyek 01 -->
|
|
<a href="01/index.html" class="card c2">
|
|
<div class="card-line"></div>
|
|
<div class="card-body">
|
|
<div class="card-head">
|
|
<div class="card-icon">⛽</div>
|
|
<span class="card-num">Proyek 01</span>
|
|
</div>
|
|
<h2 class="card-title">Pemetaan SPBU, Jalan & Parsil</h2>
|
|
<p class="card-desc">SIG infrastruktur yang memetakan lokasi SPBU berdasarkan jam operasional,
|
|
jaringan jalan, dan bidang parsil tanah dengan filter layer.</p>
|
|
<div class="card-tags">
|
|
<span class="tag">Infrastruktur</span>
|
|
<span class="tag">Layer Filter</span>
|
|
<span class="tag">Parsil Tanah</span>
|
|
</div>
|
|
<div class="card-cta">
|
|
<span class="btn-open">Buka Proyek <span class="btn-arrow">→</span></span>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
|
|
<!-- Proyek 02 -->
|
|
<a href="02/index.html" class="card c1">
|
|
<div class="card-line"></div>
|
|
<div class="card-body">
|
|
<div class="card-head">
|
|
<div class="card-icon">👥</div>
|
|
<span class="card-num">Proyek 02</span>
|
|
</div>
|
|
<h2 class="card-title">Kepadatan Penduduk Pontianak 2025</h2>
|
|
<p class="card-desc">Visualisasi sebaran dan kepadatan penduduk per kecamatan di Kota Pontianak
|
|
dengan peta choropleth interaktif dan data terkini 2025.</p>
|
|
<div class="card-tags">
|
|
<span class="tag">Demografi</span>
|
|
<span class="tag">Choropleth</span>
|
|
<span class="tag">Kependudukan</span>
|
|
</div>
|
|
<div class="card-cta">
|
|
<span class="btn-open">Buka Proyek <span class="btn-arrow">→</span></span>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
|
|
|
|
<!-- Proyek 03 -->
|
|
<a href="03/index.html" class="card c3">
|
|
<div class="card-line"></div>
|
|
<div class="card-body">
|
|
<div class="card-head">
|
|
<div class="card-icon">🤝</div>
|
|
<span class="card-num">Proyek 03</span>
|
|
</div>
|
|
<h2 class="card-title">WebGIS Bantuan Sosial</h2>
|
|
<p class="card-desc">Pemetaan penyaluran bansos berbasis lokasi rumah ibadah dan rumah warga,
|
|
dilengkapi analisis radius layanan dan rekomendasi bantuan.</p>
|
|
<div class="card-tags">
|
|
<span class="tag">Bansos</span>
|
|
<span class="tag">Radius Layanan</span>
|
|
<span class="tag">Rumah Ibadah</span>
|
|
</div>
|
|
<div class="card-cta">
|
|
<span class="btn-open">Buka Proyek <span class="btn-arrow">→</span></span>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
|
|
</div>
|
|
</main>
|
|
|
|
<!-- ── FOOTER ── -->
|
|
<footer>
|
|
<div class="footer-inner">
|
|
<span class="footer-left">Tugas <strong>Sistem Informasi Geografis C</strong> · Kota Pontianak, 2025</span>
|
|
<div class="footer-right">
|
|
Devi Natalia
|
|
<span class="footer-nim">D1041231027</span>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
</html> |