Initial WebGIS portal project

This commit is contained in:
2026-06-10 19:53:39 +07:00
commit c0aa8e09d5
62 changed files with 9013 additions and 0 deletions
+213
View File
@@ -0,0 +1,213 @@
* {
box-sizing: border-box;
}
body {
margin: 0;
color: #172033;
background: #eef2f7;
font-family: Arial, Helvetica, sans-serif;
line-height: 1.5;
}
.guide-page {
width: min(1040px, calc(100% - 32px));
margin: 28px auto;
background: #ffffff;
border-radius: 14px;
box-shadow: 0 18px 42px rgba(15, 23, 42, 0.13);
padding: 32px;
}
.guide-hero {
display: flex;
justify-content: space-between;
gap: 24px;
border-bottom: 2px solid #1f2937;
padding-bottom: 22px;
margin-bottom: 24px;
}
.eyebrow {
margin: 0 0 8px;
color: #4f46e5;
font-size: 0.78rem;
font-weight: 800;
letter-spacing: 0.08em;
text-transform: uppercase;
}
h1,
h2 {
margin: 0;
}
h1 {
font-size: 2.2rem;
}
h2 {
margin-bottom: 14px;
font-size: 1.25rem;
}
section {
margin-top: 26px;
}
.lead {
max-width: 720px;
color: #475467;
font-size: 1rem;
}
.print-btn {
align-self: flex-start;
border: 0;
border-radius: 10px;
background: #4f46e5;
color: white;
cursor: pointer;
font-weight: 800;
padding: 11px 15px;
white-space: nowrap;
}
.access-panel {
border: 1px solid #d8dee9;
border-radius: 12px;
background: #f8fafc;
padding: 20px;
}
.info-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 12px;
}
.info-grid div,
.legend-grid div {
border: 1px solid #d8dee9;
border-radius: 10px;
background: #ffffff;
padding: 14px;
}
.info-grid span {
display: block;
color: #667085;
font-size: 0.82rem;
margin-bottom: 6px;
}
.info-grid strong {
overflow-wrap: anywhere;
}
.note {
color: #667085;
font-size: 0.9rem;
margin: 12px 0 0;
}
table {
width: 100%;
border-collapse: collapse;
}
th,
td {
border: 1px solid #d8dee9;
padding: 10px;
text-align: left;
vertical-align: top;
}
th {
background: #f1f5f9;
}
code {
background: #eef2ff;
border-radius: 6px;
color: #3730a3;
font-weight: 700;
padding: 2px 6px;
}
.steps ol {
padding-left: 22px;
}
.steps li,
ul li {
margin-bottom: 8px;
}
.legend-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 12px;
}
.legend-grid strong {
display: block;
margin-bottom: 4px;
}
.legend-grid p {
color: #667085;
margin: 0;
}
.dot {
display: inline-block;
width: 13px;
height: 13px;
border-radius: 50%;
margin-right: 8px;
}
.dot.worship {
background: #4f46e5;
}
.dot.reached {
background: #10b981;
}
.dot.outside {
background: #ef4444;
}
@media (max-width: 800px) {
.guide-hero,
.info-grid,
.legend-grid {
grid-template-columns: 1fr;
flex-direction: column;
}
.guide-page {
padding: 22px;
}
}
@media print {
body {
background: white;
}
.guide-page {
width: 100%;
margin: 0;
padding: 0;
box-shadow: none;
border-radius: 0;
}
.print-btn {
display: none;
}
}
+179
View File
@@ -0,0 +1,179 @@
:root {
--primary: #4f46e5;
--primary-hover: #4338ca;
--dark: #1e293b;
--gray: #64748b;
--gray-light: #e2e8f0;
--light: #f8fafc;
--white: #ffffff;
--danger: #ef4444;
--shadow-lg: 0 18px 40px rgba(15, 23, 42, 0.12);
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
body {
min-height: 100vh;
color: var(--dark);
background:
radial-gradient(circle at top left, rgba(79, 70, 229, 0.16), transparent 34%),
linear-gradient(135deg, #f8fafc 0%, #eef2ff 52%, #f8fafc 100%);
}
.login-page {
min-height: 100vh;
display: grid;
place-items: center;
padding: 24px;
}
.login-panel {
width: min(100%, 430px);
background: rgba(255, 255, 255, 0.92);
border: 1px solid rgba(226, 232, 240, 0.9);
border-radius: 18px;
box-shadow: var(--shadow-lg);
padding: 34px;
}
.brand-mark {
width: 56px;
height: 56px;
border-radius: 16px;
display: grid;
place-items: center;
color: var(--white);
background: var(--primary);
font-size: 1.45rem;
margin-bottom: 22px;
}
.eyebrow {
color: var(--primary);
font-size: 0.78rem;
font-weight: 800;
letter-spacing: 0.08em;
text-transform: uppercase;
margin-bottom: 8px;
}
h1 {
font-size: 1.8rem;
line-height: 1.2;
margin-bottom: 10px;
}
.subtitle {
color: var(--gray);
line-height: 1.6;
margin-bottom: 24px;
}
.alert-error {
display: flex;
gap: 10px;
align-items: center;
color: #991b1b;
background-color: #fee2e2;
border: 1px solid #fecaca;
border-radius: 12px;
padding: 12px 14px;
margin-bottom: 18px;
font-size: 0.9rem;
}
.login-form {
display: grid;
gap: 16px;
}
.input-group {
display: grid;
gap: 8px;
}
.input-group span {
color: var(--dark);
font-size: 0.9rem;
font-weight: 700;
}
.input-shell {
height: 48px;
display: flex;
align-items: center;
gap: 12px;
border: 1px solid var(--gray-light);
border-radius: 12px;
background: var(--light);
padding: 0 14px;
transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.input-shell:focus-within {
background: var(--white);
border-color: rgba(79, 70, 229, 0.45);
box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}
.input-shell i {
color: var(--primary);
}
.input-shell input {
width: 100%;
border: 0;
outline: 0;
background: transparent;
color: var(--dark);
font-size: 0.96rem;
}
.btn-login {
height: 48px;
border: 0;
border-radius: 12px;
background: var(--primary);
color: var(--white);
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
cursor: pointer;
font-size: 0.98rem;
font-weight: 800;
margin-top: 4px;
transition: background-color 0.2s ease, transform 0.2s ease;
}
.btn-login:hover {
background: var(--primary-hover);
transform: translateY(-1px);
}
.login-hint {
color: var(--gray);
font-size: 0.86rem;
margin-top: 18px;
text-align: center;
}
@media (max-width: 520px) {
.login-page {
padding: 16px;
}
.login-panel {
padding: 26px;
border-radius: 16px;
}
h1 {
font-size: 1.5rem;
}
}
+135
View File
@@ -0,0 +1,135 @@
* {
box-sizing: border-box;
}
body {
margin: 0;
color: #172033;
background: #eef2f7;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
}
.report-page {
width: min(1180px, calc(100% - 32px));
margin: 24px auto;
background: #fff;
padding: 28px;
box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}
.report-header {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 24px;
border-bottom: 2px solid #1f2937;
padding-bottom: 18px;
margin-bottom: 18px;
}
.eyebrow {
margin: 0 0 6px;
color: #4f46e5;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
}
h1 {
margin: 0 0 8px;
font-size: 26px;
}
.print-btn {
border: 0;
border-radius: 8px;
background: #4f46e5;
color: white;
cursor: pointer;
font-weight: 700;
padding: 10px 14px;
}
.summary-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 10px;
margin-bottom: 14px;
}
.summary-grid div {
border: 1px solid #d8dee9;
border-left: 4px solid #4f46e5;
padding: 12px;
}
.summary-grid span {
display: block;
color: #667085;
margin-bottom: 6px;
}
.summary-grid strong {
font-size: 22px;
}
.report-note {
background: #f8fafc;
border: 1px solid #d8dee9;
padding: 10px 12px;
margin-bottom: 16px;
}
table {
width: 100%;
border-collapse: collapse;
}
th,
td {
border: 1px solid #d8dee9;
padding: 8px;
vertical-align: top;
}
th {
background: #f1f5f9;
text-align: left;
}
small {
color: #667085;
}
.empty {
text-align: center;
color: #667085;
padding: 24px;
}
@media print {
body {
background: white;
}
.report-page {
width: 100%;
margin: 0;
padding: 0;
box-shadow: none;
}
.print-btn {
display: none;
}
table {
page-break-inside: auto;
}
tr {
page-break-inside: avoid;
page-break-after: auto;
}
}
File diff suppressed because it is too large Load Diff