UAS SIG Proyek WebGis
This commit is contained in:
+614
@@ -0,0 +1,614 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="id">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Portal WebGIS Pontianak — SIG Hub</title>
|
||||
|
||||
<!-- Modern Typography (Plus Jakarta Sans) -->
|
||||
<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=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
|
||||
|
||||
<!-- Font Awesome CDN for micro-icons -->
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
||||
|
||||
<style>
|
||||
/* Design Tokens (Light/Bright Mode) */
|
||||
:root {
|
||||
--bg-light: hsl(210, 40%, 98%);
|
||||
--bg-card: hsla(0, 0%, 100%, 0.8);
|
||||
--border-color: hsla(217, 32%, 18%, 0.06);
|
||||
--text-main: hsl(222, 47%, 12%);
|
||||
--text-muted: hsl(215, 15%, 35%);
|
||||
--text-dim: hsl(215, 15%, 55%);
|
||||
|
||||
/* Glowing colors for individual projects (adjusted for light theme readability) */
|
||||
--color-road-primary: hsl(199, 89%, 42%);
|
||||
--color-road-bg: hsla(199, 89%, 42%, 0.08);
|
||||
|
||||
--color-spbu-primary: hsl(30, 95%, 45%);
|
||||
--color-spbu-bg: hsla(30, 95%, 45%, 0.08);
|
||||
|
||||
--color-poverty-primary: hsl(142, 65%, 32%);
|
||||
--color-poverty-bg: hsla(142, 65%, 32%, 0.08);
|
||||
|
||||
--font-family: 'Plus Jakarta Sans', sans-serif;
|
||||
}
|
||||
|
||||
/* Base Styling */
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: var(--font-family);
|
||||
background-color: var(--bg-light);
|
||||
background-image: radial-gradient(at 0% 0%, hsla(210, 100%, 98%, 1) 0, transparent 50%),
|
||||
radial-gradient(at 50% 0%, hsla(220, 100%, 97%, 1) 0, transparent 50%);
|
||||
color: var(--text-main);
|
||||
min-height: 100vh;
|
||||
overflow-x: hidden;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/* Ambient Background Glows */
|
||||
.bg-ambient {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
z-index: -1;
|
||||
overflow: hidden;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.blob {
|
||||
position: absolute;
|
||||
border-radius: 50%;
|
||||
filter: blur(100px);
|
||||
opacity: 0.12;
|
||||
animation: float 25s infinite alternate ease-in-out;
|
||||
}
|
||||
|
||||
.blob-1 {
|
||||
width: 40vw;
|
||||
height: 40vw;
|
||||
background: radial-gradient(circle, var(--color-road-primary) 0%, transparent 80%);
|
||||
top: -10%;
|
||||
right: 10%;
|
||||
animation-delay: 0s;
|
||||
}
|
||||
|
||||
.blob-2 {
|
||||
width: 35vw;
|
||||
height: 35vw;
|
||||
background: radial-gradient(circle, var(--color-poverty-primary) 0%, transparent 80%);
|
||||
bottom: -10%;
|
||||
left: 10%;
|
||||
animation-delay: -5s;
|
||||
}
|
||||
|
||||
.blob-3 {
|
||||
width: 30vw;
|
||||
height: 30vw;
|
||||
background: radial-gradient(circle, var(--color-spbu-primary) 0%, transparent 80%);
|
||||
top: 40%;
|
||||
left: 45%;
|
||||
animation-delay: -10s;
|
||||
}
|
||||
|
||||
@keyframes float {
|
||||
0% { transform: translate(0, 0) scale(1) rotate(0deg); }
|
||||
50% { transform: translate(6%, 4%) scale(1.05) rotate(180deg); }
|
||||
100% { transform: translate(-4%, -6%) scale(0.95) rotate(360deg); }
|
||||
}
|
||||
|
||||
/* Grid Overlay Pattern */
|
||||
.grid-overlay {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
z-index: -1;
|
||||
background-image:
|
||||
linear-gradient(to right, hsla(217, 32%, 18%, 0.03) 1px, transparent 1px),
|
||||
linear-gradient(to bottom, hsla(217, 32%, 18%, 0.03) 1px, transparent 1px);
|
||||
background-size: 40px 40px;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
/* Header Panel */
|
||||
header {
|
||||
width: 100%;
|
||||
max-width: 1300px;
|
||||
margin: 0 auto;
|
||||
padding: 1.5rem 2rem;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.logo-container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.logo-icon {
|
||||
width: 42px;
|
||||
height: 42px;
|
||||
border-radius: 12px;
|
||||
background: linear-gradient(135deg, hsl(200, 100%, 45%), hsl(260, 100%, 55%));
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 1.25rem;
|
||||
color: white;
|
||||
box-shadow: 0 4px 15px hsla(200, 100%, 45%, 0.2);
|
||||
}
|
||||
|
||||
.logo-text h1 {
|
||||
font-size: 1.15rem;
|
||||
font-weight: 800;
|
||||
letter-spacing: 0.5px;
|
||||
color: var(--text-main);
|
||||
}
|
||||
|
||||
.logo-text p {
|
||||
font-size: 0.75rem;
|
||||
color: var(--text-dim);
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.status-panel {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 20px;
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
.status-badge {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
background: hsla(0, 0%, 100%, 0.7);
|
||||
border: 1px solid var(--border-color);
|
||||
padding: 6px 14px;
|
||||
border-radius: 30px;
|
||||
font-weight: 600;
|
||||
color: var(--text-muted);
|
||||
backdrop-filter: blur(10px);
|
||||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
|
||||
}
|
||||
|
||||
.status-dot {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
border-radius: 50%;
|
||||
background-color: hsl(142, 72%, 45%);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.status-dot::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
inset: -4px;
|
||||
border-radius: 50%;
|
||||
border: 2px solid hsl(142, 72%, 45%);
|
||||
opacity: 0.6;
|
||||
animation: pulse 1.5s infinite;
|
||||
}
|
||||
|
||||
@keyframes pulse {
|
||||
0% { transform: scale(1); opacity: 1; }
|
||||
100% { transform: scale(2.2); opacity: 0; }
|
||||
}
|
||||
|
||||
/* Main Container */
|
||||
main {
|
||||
flex: 1;
|
||||
width: 100%;
|
||||
max-width: 1300px;
|
||||
margin: 0 auto;
|
||||
padding: 2.5rem 2rem;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
z-index: 5;
|
||||
}
|
||||
|
||||
/* Hero Section */
|
||||
.hero {
|
||||
text-align: center;
|
||||
margin-bottom: 4rem;
|
||||
max-width: 700px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.hero-tag {
|
||||
display: inline-block;
|
||||
font-size: 0.72rem;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 2px;
|
||||
background: linear-gradient(135deg, hsla(200, 100%, 45%, 0.08), hsla(260, 100%, 55%, 0.08));
|
||||
border: 1px solid hsla(200, 100%, 45%, 0.15);
|
||||
color: hsl(200, 100%, 35%);
|
||||
padding: 6px 16px;
|
||||
border-radius: 100px;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.hero h2 {
|
||||
font-size: 2.5rem;
|
||||
font-weight: 800;
|
||||
letter-spacing: -0.5px;
|
||||
line-height: 1.2;
|
||||
margin-bottom: 1rem;
|
||||
color: var(--text-main);
|
||||
}
|
||||
|
||||
.hero p {
|
||||
font-size: 1.05rem;
|
||||
color: var(--text-muted);
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
/* Project Cards Grid */
|
||||
.grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
|
||||
gap: 2rem;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
/* Card Item */
|
||||
.card {
|
||||
background-color: var(--bg-card);
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 24px;
|
||||
padding: 2.25rem;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
backdrop-filter: blur(12px);
|
||||
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
|
||||
transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
|
||||
}
|
||||
|
||||
/* Hover effect */
|
||||
.card:hover {
|
||||
transform: translateY(-8px);
|
||||
background-color: #ffffff;
|
||||
border-color: var(--card-hover-border);
|
||||
box-shadow:
|
||||
0 20px 40px -15px rgba(0, 0, 0, 0.06),
|
||||
0 0 20px -2px var(--card-glow);
|
||||
}
|
||||
|
||||
/* Colors and values specific to each card */
|
||||
.card-road {
|
||||
--card-theme-color: var(--color-road-primary);
|
||||
--card-theme-bg: var(--color-road-bg);
|
||||
--card-hover-border: hsla(199, 89%, 42%, 0.3);
|
||||
--card-glow: hsla(199, 89%, 42%, 0.1);
|
||||
}
|
||||
|
||||
.card-spbu {
|
||||
--card-theme-color: var(--color-spbu-primary);
|
||||
--card-theme-bg: var(--color-spbu-bg);
|
||||
--card-hover-border: hsla(30, 95%, 45%, 0.3);
|
||||
--card-glow: hsla(30, 95%, 45%, 0.1);
|
||||
}
|
||||
|
||||
.card-poverty {
|
||||
--card-theme-color: var(--color-poverty-primary);
|
||||
--card-theme-bg: var(--color-poverty-bg);
|
||||
--card-hover-border: hsla(142, 65%, 32%, 0.3);
|
||||
--card-glow: hsla(142, 65%, 32%, 0.1);
|
||||
}
|
||||
|
||||
/* Card Top Decoration */
|
||||
.card-icon-container {
|
||||
width: 54px;
|
||||
height: 54px;
|
||||
border-radius: 16px;
|
||||
background-color: var(--card-theme-bg);
|
||||
border: 1px solid rgba(0, 0, 0, 0.02);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 1.5rem;
|
||||
color: var(--card-theme-color);
|
||||
margin-bottom: 2rem;
|
||||
transition: transform 0.4s ease;
|
||||
}
|
||||
|
||||
.card:hover .card-icon-container {
|
||||
transform: scale(1.1) rotate(5deg);
|
||||
}
|
||||
|
||||
.card-body {
|
||||
margin-bottom: 2.25rem;
|
||||
}
|
||||
|
||||
.card-title {
|
||||
font-size: 1.35rem;
|
||||
font-weight: 700;
|
||||
line-height: 1.3;
|
||||
margin-bottom: 0.75rem;
|
||||
color: var(--text-main);
|
||||
transition: color 0.3s ease;
|
||||
}
|
||||
|
||||
.card:hover .card-title {
|
||||
color: var(--card-theme-color);
|
||||
}
|
||||
|
||||
.card-desc {
|
||||
font-size: 0.88rem;
|
||||
color: var(--text-muted);
|
||||
line-height: 1.6;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
/* Badges / Tech tags */
|
||||
.tech-tags {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.tag {
|
||||
font-size: 0.7rem;
|
||||
font-weight: 600;
|
||||
color: var(--text-muted);
|
||||
background-color: hsla(0, 0%, 0%, 0.03);
|
||||
border: 1px solid rgba(0, 0, 0, 0.04);
|
||||
padding: 4px 10px;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
/* Card Action Link styles */
|
||||
.card-action {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
border-top: 1px solid var(--border-color);
|
||||
padding-top: 1.25rem;
|
||||
margin-top: auto;
|
||||
}
|
||||
|
||||
.action-text {
|
||||
font-size: 0.85rem;
|
||||
font-weight: 600;
|
||||
color: var(--text-muted);
|
||||
transition: color 0.3s ease;
|
||||
}
|
||||
|
||||
.card:hover .action-text {
|
||||
color: var(--text-main);
|
||||
}
|
||||
|
||||
.action-arrow {
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
border-radius: 50%;
|
||||
background-color: hsla(0, 0%, 0%, 0.03);
|
||||
border: 1px solid rgba(0, 0, 0, 0.04);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 0.85rem;
|
||||
color: var(--text-muted);
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.card:hover .action-arrow {
|
||||
background-color: var(--card-theme-color);
|
||||
color: white;
|
||||
border-color: var(--card-theme-color);
|
||||
transform: translateX(4px);
|
||||
}
|
||||
|
||||
/* Footer */
|
||||
footer {
|
||||
width: 100%;
|
||||
max-width: 1300px;
|
||||
margin: auto auto 0 auto;
|
||||
padding: 2rem;
|
||||
text-align: center;
|
||||
border-top: 1px solid var(--border-color);
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
font-size: 0.8rem;
|
||||
color: var(--text-dim);
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
footer a {
|
||||
color: var(--text-muted);
|
||||
text-decoration: none;
|
||||
transition: color 0.2s;
|
||||
}
|
||||
|
||||
footer a:hover {
|
||||
color: var(--text-main);
|
||||
}
|
||||
|
||||
/* Responsive Design */
|
||||
@media (max-width: 768px) {
|
||||
header {
|
||||
flex-direction: column;
|
||||
gap: 1rem;
|
||||
text-align: center;
|
||||
padding: 1.5rem 1rem;
|
||||
}
|
||||
|
||||
.status-panel {
|
||||
width: 100%;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
main {
|
||||
padding: 1.5rem 1rem;
|
||||
}
|
||||
|
||||
.hero h2 {
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
footer {
|
||||
flex-direction: column;
|
||||
gap: 1rem;
|
||||
padding: 1.5rem 1rem;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!-- Background decorations -->
|
||||
<div class="bg-ambient">
|
||||
<div class="blob blob-1"></div>
|
||||
<div class="blob blob-2"></div>
|
||||
<div class="blob blob-3"></div>
|
||||
</div>
|
||||
<div class="grid-overlay"></div>
|
||||
|
||||
<!-- Header -->
|
||||
<header>
|
||||
<div class="logo-container">
|
||||
<div class="logo-icon">
|
||||
<i class="fa-solid fa-map-location-dot"></i>
|
||||
</div>
|
||||
<div class="logo-text">
|
||||
<h1>GIS HUB PONTIANAK</h1>
|
||||
<p>Sistem Informasi Geografis Terintegrasi</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="status-panel">
|
||||
<div class="status-badge">
|
||||
<div class="status-dot"></div>
|
||||
<span>Server Online</span>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<!-- Main Content -->
|
||||
<main>
|
||||
<div class="hero">
|
||||
<span class="hero-tag">Geographic Information System</span>
|
||||
<h2>Portal Aplikasi WebGIS</h2>
|
||||
<p>Akses cepat ke berbagai modul pemetaan interaktif Kota Pontianak. Dibuat menggunakan teknologi web modern dan visualisasi data spasial secara real-time.</p>
|
||||
</div>
|
||||
|
||||
<!-- Grid of Projects -->
|
||||
<div class="grid">
|
||||
|
||||
<!-- Card 1: SIG Jalan & Parsil Tanah -->
|
||||
<a href="http://localhost/SIG/SIG_Tanah_Jalan/" class="card card-road">
|
||||
<div>
|
||||
<div class="card-icon-container">
|
||||
<i class="fa-solid fa-road"></i>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<h3 class="card-title">SIG Jalan & Parsil Tanah</h3>
|
||||
<p class="card-desc">Sistem monitoring inventaris jalan, bidang tanah parsil (SHM, HGB, HGU), serta pelaporan tingkat kerusakan jalan terintegrasi dengan Leaflet.draw.</p>
|
||||
<div class="tech-tags">
|
||||
<span class="tag">Leaflet.js</span>
|
||||
<span class="tag">Leaflet.draw</span>
|
||||
<span class="tag">PHP</span>
|
||||
<span class="tag">MySQL</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-action">
|
||||
<span class="action-text">Buka Aplikasi</span>
|
||||
<div class="action-arrow">
|
||||
<i class="fa-solid fa-arrow-right"></i>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Card 2: SIG SPBU Pontianak -->
|
||||
<a href="http://localhost/SIG/SPBU_Pontianak/" class="card card-spbu">
|
||||
<div>
|
||||
<div class="card-icon-container">
|
||||
<i class="fa-solid fa-gas-pump"></i>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<h3 class="card-title">SIG Sebaran SPBU</h3>
|
||||
<p class="card-desc">Modul pemetaan lokasi sebaran Stasiun Pengisian Bahan Bakar Umum (SPBU) di Kota Pontianak, lengkap dengan input fasilitas dan galeri foto lokasi.</p>
|
||||
<div class="tech-tags">
|
||||
<span class="tag">Leaflet.js</span>
|
||||
<span class="tag">Bootstrap</span>
|
||||
<span class="tag">PHP</span>
|
||||
<span class="tag">MySQL</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-action">
|
||||
<span class="action-text">Buka Aplikasi</span>
|
||||
<div class="action-arrow">
|
||||
<i class="fa-solid fa-arrow-right"></i>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- Card 3: WebGIS PovertyMap -->
|
||||
<a href="http://localhost/SIG/sig-kemiskinan/" class="card card-poverty">
|
||||
<div>
|
||||
<div class="card-icon-container">
|
||||
<i class="fa-solid fa-people-roof"></i>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<h3 class="card-title">WebGIS PovertyMap</h3>
|
||||
<p class="card-desc">WebGIS Monitoring Bantuan Sosial untuk memetakan konsentrasi penduduk miskin, visualisasi demografis, dan penyaluran bantuan sosial tepat saran.</p>
|
||||
<div class="tech-tags">
|
||||
<span class="tag">Leaflet.js</span>
|
||||
<span class="tag">GeoJSON</span>
|
||||
<span class="tag">Bootstrap 5</span>
|
||||
<span class="tag">Chart.js</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-action">
|
||||
<span class="action-text">Buka Aplikasi</span>
|
||||
<div class="action-arrow">
|
||||
<i class="fa-solid fa-arrow-right"></i>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<!-- Footer -->
|
||||
<footer>
|
||||
<div>
|
||||
© 2026 <strong>SIG Pontianak Hub</strong>. Semua Hak Cipta Dilindungi.
|
||||
</div>
|
||||
<div>
|
||||
Host: <a href="http://localhost/SIG/" target="_blank">localhost/SIG</a>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user