Files
luthfihadinugroho79 e950468760 add files
2026-06-10 19:42:59 +07:00

398 lines
10 KiB
HTML

<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portal WebGIS Terpadu</title>
<style>
:root {
--bg: #f4f7f4;
--surface: #ffffff;
--ink: #18231f;
--muted: #62716a;
--line: #dce5df;
--green: #1f7a5a;
--teal: #167c8c;
--amber: #c78322;
--blue: #356cb5;
--red: #bc574a;
--shadow: 0 18px 45px rgba(26, 45, 38, 0.12);
}
* {
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100vh;
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
color: var(--ink);
background:
linear-gradient(90deg, rgba(31, 122, 90, 0.06) 1px, transparent 1px),
linear-gradient(rgba(31, 122, 90, 0.06) 1px, transparent 1px),
radial-gradient(circle at 16% 12%, rgba(22, 124, 140, 0.16), transparent 28%),
radial-gradient(circle at 84% 18%, rgba(199, 131, 34, 0.13), transparent 24%),
var(--bg);
background-size: 44px 44px, 44px 44px, auto, auto, auto;
}
a {
color: inherit;
text-decoration: none;
}
.page {
width: min(1120px, calc(100% - 32px));
margin: 0 auto;
padding: 48px 0;
}
.hero {
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
gap: 28px;
align-items: end;
padding: 28px 0 34px;
}
.eyebrow {
display: inline-flex;
align-items: center;
gap: 8px;
margin-bottom: 16px;
padding: 7px 11px;
border: 1px solid var(--line);
border-radius: 999px;
background: rgba(255, 255, 255, 0.72);
color: var(--green);
font-size: 0.85rem;
font-weight: 700;
}
.pulse {
width: 8px;
height: 8px;
border-radius: 50%;
background: var(--green);
box-shadow: 0 0 0 5px rgba(31, 122, 90, 0.15);
}
h1 {
margin: 0;
max-width: 760px;
font-size: clamp(2.25rem, 6vw, 4.6rem);
line-height: 1;
letter-spacing: 0;
}
.lead {
max-width: 680px;
margin: 18px 0 0;
color: var(--muted);
font-size: clamp(1rem, 2vw, 1.18rem);
line-height: 1.7;
}
.mini-map {
width: 230px;
height: 150px;
border: 1px solid var(--line);
border-radius: 8px;
background:
linear-gradient(142deg, transparent 0 35%, rgba(53, 108, 181, 0.26) 35% 39%, transparent 39% 100%),
linear-gradient(26deg, transparent 0 45%, rgba(31, 122, 90, 0.22) 45% 49%, transparent 49% 100%),
linear-gradient(84deg, transparent 0 56%, rgba(199, 131, 34, 0.22) 56% 61%, transparent 61% 100%),
#ffffff;
box-shadow: var(--shadow);
position: relative;
overflow: hidden;
}
.mini-map::before,
.mini-map::after {
content: "";
position: absolute;
border-radius: 50%;
background: var(--red);
box-shadow:
68px 38px 0 var(--green),
136px 76px 0 var(--blue),
42px 108px 0 var(--amber);
width: 12px;
height: 12px;
left: 28px;
top: 30px;
}
.mini-map::after {
width: 56px;
height: 56px;
left: auto;
top: auto;
right: -16px;
bottom: -16px;
background: rgba(31, 122, 90, 0.14);
box-shadow: none;
}
.grid {
display: grid;
grid-template-columns: repeat(5, minmax(0, 1fr));
gap: 18px;
}
.card {
min-height: 230px;
display: flex;
flex-direction: column;
justify-content: space-between;
gap: 24px;
padding: 22px;
border: 1px solid var(--line);
border-radius: 8px;
background: rgba(255, 255, 255, 0.88);
box-shadow: 0 10px 26px rgba(26, 45, 38, 0.07);
transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
position: relative;
overflow: hidden;
}
.card::before {
content: "";
position: absolute;
inset: 0;
border-top: 4px solid var(--accent);
pointer-events: none;
}
.card:hover,
.card:focus-visible {
transform: translateY(-5px);
border-color: color-mix(in srgb, var(--accent) 48%, var(--line));
box-shadow: var(--shadow);
outline: none;
}
.icon {
width: 52px;
height: 52px;
display: grid;
place-items: center;
border-radius: 8px;
background: color-mix(in srgb, var(--accent) 13%, white);
color: var(--accent);
}
.icon svg {
width: 30px;
height: 30px;
stroke: currentColor;
stroke-width: 1.9;
fill: none;
stroke-linecap: round;
stroke-linejoin: round;
}
.title {
margin: 0;
font-size: 1.12rem;
line-height: 1.35;
letter-spacing: 0;
}
.meta {
display: flex;
align-items: center;
justify-content: space-between;
gap: 14px;
color: var(--muted);
font-size: 0.9rem;
}
.open {
display: inline-grid;
place-items: center;
flex: 0 0 auto;
width: 34px;
height: 34px;
border-radius: 50%;
background: var(--ink);
color: #ffffff;
transition: background 180ms ease;
}
.card:hover .open,
.card:focus-visible .open {
background: var(--accent);
}
.open svg {
width: 17px;
height: 17px;
stroke: currentColor;
stroke-width: 2.2;
fill: none;
stroke-linecap: round;
stroke-linejoin: round;
}
.footer {
margin-top: 34px;
padding-top: 20px;
border-top: 1px solid var(--line);
color: var(--muted);
font-size: 0.92rem;
}
@media (max-width: 1040px) {
.grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}
@media (max-width: 760px) {
.page {
width: min(100% - 24px, 560px);
padding: 28px 0;
}
.hero {
grid-template-columns: 1fr;
padding-top: 12px;
}
.mini-map {
width: 100%;
height: 118px;
}
.grid {
grid-template-columns: 1fr;
}
.card {
min-height: 190px;
}
}
</style>
</head>
<body>
<main class="page">
<header class="hero">
<div>
<div class="eyebrow"><span class="pulse"></span> Portal aplikasi peta</div>
<h1>Portal WebGIS Terpadu</h1>
<p class="lead">Pilih salah satu aplikasi WebGIS untuk membuka peta interaktif.</p>
</div>
<div class="mini-map" aria-hidden="true"></div>
</header>
<section class="grid" aria-label="Daftar aplikasi WebGIS">
<a class="card" href="01/" style="--accent: var(--green)" aria-label="Buka Webgis SPBU Point">
<div class="icon" aria-hidden="true">
<svg viewBox="0 0 24 24">
<path d="M6 21V5a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v16" />
<path d="M8 8h6" />
<path d="M16 8h2.2a1.8 1.8 0 0 1 1.8 1.8V17a2 2 0 0 1-4 0v-4" />
<path d="M5 21h12" />
</svg>
</div>
<div>
<h2 class="title">Webgis SPBU Point</h2>
</div>
<div class="meta">
<span>Folder 01</span>
<span class="open" aria-hidden="true"><svg viewBox="0 0 24 24"><path d="M5 12h14" /><path d="m13 6 6 6-6 6" /></svg></span>
</div>
</a>
<a class="card" href="02/" style="--accent: var(--teal)" aria-label="Buka Webgis Jalan dan Parsil Tanah">
<div class="icon" aria-hidden="true">
<svg viewBox="0 0 24 24">
<path d="M4 19 9 4" />
<path d="m15 20 5-15" />
<path d="M9 4h11" />
<path d="M4 19h11" />
<path d="M12 7v2" />
<path d="M12 13v2" />
<path d="M12 19v1" />
</svg>
</div>
<div>
<h2 class="title">Webgis Jalan dan Parsil Tanah</h2>
</div>
<div class="meta">
<span>Folder 02</span>
<span class="open" aria-hidden="true"><svg viewBox="0 0 24 24"><path d="M5 12h14" /><path d="m13 6 6 6-6 6" /></svg></span>
</div>
</a>
<a class="card" href="03/choropleth-pontianak%20(2).html" style="--accent: var(--blue)" aria-label="Buka Webgis Chropleth Kota Pontianak">
<div class="icon" aria-hidden="true">
<svg viewBox="0 0 24 24">
<path d="m3 6 6-3 6 3 6-3v15l-6 3-6-3-6 3V6Z" />
<path d="M9 3v15" />
<path d="M15 6v15" />
<path d="M6 8h2" />
<path d="M16 10h2" />
<path d="M10 14h3" />
</svg>
</div>
<div>
<h2 class="title">Webgis Chropleth Kota Pontianak</h2>
</div>
<div class="meta">
<span>Folder 03</span>
<span class="open" aria-hidden="true"><svg viewBox="0 0 24 24"><path d="M5 12h14" /><path d="m13 6 6 6-6 6" /></svg></span>
</div>
</a>
<a class="card" href="04/" style="--accent: var(--amber)" aria-label="Buka Webgis SPBU Upgrade Layering">
<div class="icon" aria-hidden="true">
<svg viewBox="0 0 24 24">
<path d="M12 21s7-4.4 7-11a7 7 0 1 0-14 0c0 6.6 7 11 7 11Z" />
<circle cx="12" cy="10" r="2.2" />
<path d="M8 4.8 5.7 2.5" />
<path d="M16 4.8 18.3 2.5" />
<path d="M12 6.8V3" />
</svg>
</div>
<div>
<h2 class="title">Webgis SPBU Upgrade Layering</h2>
</div>
<div class="meta">
<span>Folder 04</span>
<span class="open" aria-hidden="true"><svg viewBox="0 0 24 24"><path d="M5 12h14" /><path d="m13 6 6 6-6 6" /></svg></span>
</div>
</a>
<a class="card" href="05/" style="--accent: var(--red)" aria-label="Buka WebGIS PovertyMap">
<div class="icon" aria-hidden="true">
<svg viewBox="0 0 24 24">
<path d="M4 19V5" />
<path d="M4 19h16" />
<path d="M8 16v-5" />
<path d="M12 16V8" />
<path d="M16 16v-3" />
<path d="M8 6h8" />
<path d="m14 4 2 2-2 2" />
</svg>
</div>
<div>
<h2 class="title">WebGIS PovertyMap</h2>
</div>
<div class="meta">
<span>Folder 05</span>
<span class="open" aria-hidden="true"><svg viewBox="0 0 24 24"><path d="M5 12h14" /><path d="m13 6 6 6-6 6" /></svg></span>
</div>
</a>
</section>
<footer class="footer">
Portal ini menghubungkan lima project WebGIS dalam satu halaman pembuka.
</footer>
</main>
</body>
</html>