feat(tapops): add css modules, js scripts, and viewer page

This commit is contained in:
Dodo
2026-06-04 14:40:40 +07:00
parent 0ebc25809b
commit c9d96eabe4
16 changed files with 4379 additions and 302 deletions
+123
View File
@@ -0,0 +1,123 @@
/* ===========================================
Base / Reset — scoped under .tapops-doc-root
Prevents contaminating Tailwind nav/footer.
=========================================== */
.tapops-doc-root *,
.tapops-doc-root *::before,
.tapops-doc-root *::after {
box-sizing: border-box;
}
/* Font is set on the root only (inherited), NOT on `*`.
A universal `.tapops-doc-root *` rule would tie Font Awesome's
`.fas` font-family in specificity and—loading later—override it,
blanking every icon. Inheritance loses to FA's explicit rule, so
icons render while normal text still gets Roboto. */
.tapops-doc-root {
font-family: 'Roboto', sans-serif;
color: var(--text-dark);
line-height: 1.6;
}
/* Form controls don't inherit font-family by default — opt them in.
These elements never hold Font Awesome glyphs, so this is icon-safe. */
.tapops-doc-root input,
.tapops-doc-root select,
.tapops-doc-root textarea,
.tapops-doc-root button {
font-family: inherit;
}
.tapops-doc-root a {
text-decoration: none;
color: inherit;
}
.tapops-doc-root img {
display: block;
}
/* --- Shared Section Styles --- */
.tapops-doc-root .section-header {
margin-bottom: 50px;
}
.tapops-doc-root .section-tag {
font-size: 0.75rem;
font-weight: 800;
letter-spacing: 2px;
background-color: var(--secondary-gold);
color: var(--primary-blue);
display: inline-block;
padding: 6px 14px;
text-transform: uppercase;
margin-top: 10px;
}
.tapops-doc-root .section-title {
font-size: 2.5rem;
font-weight: 800;
color: var(--primary-blue);
letter-spacing: -1px;
line-height: 1.15;
}
/* --- Shared Button Styles --- */
.tapops-doc-root .btn-join,
.tapops-doc-root .btn-outline {
padding: 17px 30px;
font-weight: 800;
font-size: 0.9rem;
letter-spacing: 1px;
display: inline-flex;
align-items: center;
gap: 12px;
transition: all 0.3s ease;
}
.tapops-doc-root .btn-join {
background-color: var(--secondary-gold);
color: var(--primary-blue);
}
.tapops-doc-root .btn-outline {
border: 1px solid rgba(255, 255, 255, 0.18);
color: white;
}
.tapops-doc-root .btn-join:hover,
.tapops-doc-root .btn-outline:hover {
transform: translateY(-2px);
}
.tapops-doc-root .btn-join:hover {
background-color: #fff;
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}
.tapops-doc-root .btn-outline:hover {
border-color: var(--secondary-gold);
color: var(--secondary-gold);
}
@media (max-width: 768px) {
.tapops-doc-root .btn-join,
.tapops-doc-root .btn-outline {
padding: 14px 24px;
font-size: 0.82rem;
width: 100%;
justify-content: center;
}
}
@media (max-width: 480px) {
.tapops-doc-root .btn-join,
.tapops-doc-root .btn-outline {
padding: 12px 20px;
font-size: 0.78rem;
letter-spacing: 0.5px;
}
}
+845
View File
@@ -0,0 +1,845 @@
/* ===========================================
Document Hub & Dashboard Layout
=========================================== */
.documents-section {
padding: 120px 5%;
background: hsl(0, 0%, 100%);
}
.repo-dashboard-container {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 280px 1fr;
gap: 40px;
align-items: start;
}
/* --- Sidebar Styling --- */
.repo-sidebar {
position: sticky;
top: 150px;
}
/* Mobile category dropdown wrapper (hidden on desktop) */
.mobile-category-control-group {
display: none !important;
}
.sidebar-title {
font-size: 0.75rem;
letter-spacing: 2px;
font-weight: 800;
color: #94a3b8;
margin-bottom: 20px;
text-transform: uppercase;
}
.document-filter-wrapper {
display: flex;
flex-direction: column;
gap: 8px;
margin-bottom: 30px;
}
/* Desktop: show buttons, hide dropdown */
.filter-btn-group {
display: flex;
flex-direction: column;
gap: 8px;
}
.filter-select-group {
display: none;
}
.doc-filter-btn {
text-align: left;
padding: 14px 18px;
background: white;
border: 1px solid #e2e8f0;
font-size: 0.85rem;
font-weight: 700;
color: var(--primary-blue);
cursor: pointer;
transition: all 0.2s ease;
border-radius: 4px;
}
.doc-filter-btn.active {
background: var(--primary-blue);
color: white;
border-color: var(--primary-blue);
box-shadow: 0 4px 12px rgba(0, 49, 80, 0.15);
}
.doc-filter-btn:hover:not(.active) {
border-color: var(--secondary-gold);
background: #fffdf5;
}
/* --- Custom UI Dropdown --- */
.custom-dropdown {
position: relative;
width: 100%;
}
.custom-dropdown-trigger {
width: 100%;
padding: 14px 18px;
background: white;
border: 1px solid #e2e8f0;
border-radius: 4px;
font-family: inherit;
font-size: 0.9rem;
font-weight: 700;
color: var(--primary-blue);
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.custom-dropdown-trigger:hover {
border-color: var(--secondary-gold);
background: #fffdf5;
}
.custom-dropdown-trigger:focus-visible {
outline: none;
border-color: var(--primary-blue);
box-shadow: 0 0 0 3px rgba(0, 49, 80, 0.08);
}
.custom-dropdown-trigger .trigger-arrow {
font-size: 0.8rem;
transition: transform 0.25s ease;
color: var(--primary-blue);
}
.custom-dropdown.active .custom-dropdown-trigger .trigger-arrow {
transform: rotate(180deg);
}
.custom-dropdown.active .custom-dropdown-trigger {
border-color: var(--primary-blue);
box-shadow: 0 0 0 3px rgba(0, 49, 80, 0.08);
}
.custom-dropdown-menu {
position: absolute;
top: calc(100% + 6px);
left: 0;
right: 0;
background: white;
border: 1px solid #e2e8f0;
border-radius: 6px;
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
z-index: 100;
opacity: 0;
visibility: hidden;
transform: translateY(-8px);
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
overflow: hidden;
max-height: 300px;
overflow-y: auto;
}
.custom-dropdown.active .custom-dropdown-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.custom-dropdown-item {
padding: 12px 18px;
font-size: 0.88rem;
font-weight: 600;
color: #475569;
cursor: pointer;
transition: all 0.15s ease;
display: flex;
align-items: center;
justify-content: space-between;
}
.custom-dropdown-item:hover {
background: #f1f5f9;
color: var(--primary-blue);
}
.custom-dropdown-item.active {
background: #f0f7ff;
color: var(--primary-blue);
font-weight: 700;
}
/* Tick mark for selected item */
.custom-dropdown-item.active::after {
content: "\f00c";
font-family: "Font Awesome 5 Free";
font-weight: 900;
font-size: 0.75rem;
color: var(--primary-blue);
}
/* --- Filter Skeleton Loading --- */
.filter-skeleton {
display: flex;
flex-direction: column;
gap: 8px;
}
.filter-skeleton-item {
height: 48px;
border-radius: 4px;
background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
background-size: 200% 100%;
animation: skeleton-shimmer 1.5s ease-in-out infinite;
}
.filter-skeleton-item.short {
width: 70%;
}
@keyframes skeleton-shimmer {
0% { background-position: 200% 0; }
100% { background-position: -200% 0; }
}
.sidebar-info-box {
background: #f1f5f9;
padding: 20px;
border-radius: 4px;
display: flex;
gap: 12px;
}
.sidebar-info-box i {
color: var(--primary-blue);
margin-top: 3px;
}
.sidebar-info-box p {
font-size: 0.82rem;
color: #64748b;
line-height: 1.5;
}
/* --- Content Area & Search --- */
.repo-main-content {
min-height: 800px;
min-width: 0;
}
.repo-content-header {
display: flex;
flex-direction: column;
gap: 30px;
margin-bottom: 50px;
}
.header-title-area .section-title {
margin-bottom: 8px;
}
.section-subtitle {
font-size: 0.95rem;
color: #64748b;
font-weight: 400;
}
.repo-controls {
display: flex;
justify-content: space-between;
align-items: flex-end;
gap: 24px;
background: white;
padding: 24px;
border-radius: 8px;
border: 1px solid #e2e8f0;
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.search-container {
flex: 1;
max-width: 500px;
}
.search-input-group {
position: relative;
width: 100%;
}
.search-icon {
position: absolute;
left: 18px;
top: 50%;
transform: translateY(-50%);
color: #94a3b8;
font-size: 1rem;
}
#doc-search {
width: 100%;
padding: 16px 16px 16px 50px;
background: white;
border: 1px solid #e2e8f0;
border-radius: 4px;
font-size: 0.95rem;
color: var(--primary-blue);
transition: all 0.3s ease;
}
#doc-search:focus {
outline: none;
}
/* --- Filter Controls --- */
.filter-controls {
display: flex;
gap: 16px;
align-items: flex-end;
}
.control-group {
display: flex;
flex-direction: column;
gap: 8px;
}
.date-range-group {
min-width: 320px;
}
.control-label {
font-size: 0.7rem;
font-weight: 800;
color: #94a3b8;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.select-wrapper {
position: relative;
min-width: 140px;
}
#sort-filter-wrapper {
position: relative;
min-width: 140px;
}
.select-icon {
position: absolute;
left: 14px;
top: 50%;
transform: translateY(-50%);
color: var(--primary-blue);
font-size: 0.8rem;
pointer-events: none;
}
/* --- Date Range Filter --- */
.date-range-inputs {
display: flex;
align-items: center;
gap: 10px;
background: #f8fafc;
border: 1px solid #e2e8f0;
padding: 4px 12px;
border-radius: 4px;
transition: all 0.2s ease;
}
.date-range-inputs:focus-within {
background: white;
}
.date-range-inputs .input-wrapper {
position: relative;
display: flex;
align-items: center;
}
.date-range-inputs input[type="date"] {
border: none;
background: transparent;
padding: 8px 0;
font-family: inherit;
font-size: 0.85rem;
font-weight: 700;
color: var(--primary-blue);
cursor: pointer;
min-width: 120px;
}
.date-range-inputs input[type="date"]:focus {
outline: none;
}
.date-range-inputs input[type="date"]::-webkit-calendar-picker-indicator {
cursor: pointer;
opacity: 0.6;
transition: opacity 0.2s;
}
.date-range-inputs input[type="date"]::-webkit-calendar-picker-indicator:hover {
opacity: 1;
}
.range-divider {
font-size: 0.7rem;
font-weight: 800;
color: #94a3b8;
text-transform: uppercase;
padding: 0 4px;
}
.filter-select,
select#sort-filter {
width: 100%;
padding: 12px 12px 12px 36px;
background: #f8fafc;
border: 1px solid #e2e8f0;
border-radius: 4px;
font-size: 0.85rem;
font-weight: 700;
color: var(--primary-blue);
cursor: pointer;
appearance: none;
transition: all 0.2s ease;
}
.filter-select:hover,
select#sort-filter:hover {
border-color: var(--secondary-gold);
background: white;
}
.filter-select:focus,
select#sort-filter:focus {
outline: none;
}
/* --- Document Cards Grid --- */
.document-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 24px;
}
.document-card {
background: white;
border: 1px solid #e2e8f0;
padding: 30px;
display: flex;
flex-direction: column;
transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
border-radius: 4px;
}
.document-card:hover {
border-color: var(--secondary-gold);
box-shadow: 0 20px 40px rgba(0, 49, 80, 0.05);
transform: translateY(-5px);
}
.doc-type-icon {
font-size: 2.2rem;
margin-bottom: 20px;
}
.doc-type-pdf {
color: #ef4444;
}
.doc-type-docx {
color: #3b82f6;
}
.doc-title {
font-size: 1.15rem;
font-weight: 800;
color: var(--primary-blue);
margin-bottom: 12px;
line-height: 1.4;
}
.doc-meta {
display: flex;
gap: 8px;
margin-bottom: 25px;
flex-wrap: wrap;
}
.doc-badge {
font-size: 0.65rem;
font-weight: 800;
padding: 4px 10px;
background: #f1f5f9;
color: #64748b;
text-transform: uppercase;
}
.doc-badge.date {
background: hsl(200, 95%, 95%);
color: hsl(200, 95%, 30%);
}
/* --- Tag Badges --- */
.doc-tags {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 6px;
margin-bottom: 20px;
}
.doc-tags-icon {
font-size: 0.7rem;
color: #94a3b8;
margin-right: 2px;
}
.doc-tag {
font-size: 0.65rem;
font-weight: 700;
padding: 3px 10px;
background: hsl(43, 100%, 95%);
color: hsl(43, 80%, 35%);
border: 1px solid hsl(43, 80%, 85%);
border-radius: 20px;
text-transform: lowercase;
letter-spacing: 0.3px;
transition: all 0.2s ease;
}
.doc-tag:hover {
background: hsl(43, 80%, 88%);
border-color: hsl(43, 80%, 70%);
}
.doc-actions {
margin-top: auto;
display: flex;
flex-direction: column;
gap: 10px;
}
.btn-action-primary,
.btn-action-outline {
padding: 12px;
text-align: center;
text-decoration: none;
font-weight: 800;
font-size: 0.75rem;
letter-spacing: 0.5px;
text-transform: uppercase;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
transition: all 0.2s ease;
border-radius: 4px;
width: 100%;
}
a.btn-action-primary {
background: var(--primary-blue);
color: white;
border: 1px solid var(--primary-blue);
}
a.btn-action-primary:hover {
background: var(--secondary-gold);
border-color: var(--secondary-gold);
color: var(--primary-blue);
}
a.btn-action-outline {
background: transparent;
color: var(--primary-blue);
border: 1px solid #e2e8f0;
}
a.btn-action-outline:hover {
border-color: var(--primary-blue);
background: #f8fafc;
}
/* ===========================================
Responsive — Tablet (≤1024px)
=========================================== */
@media (max-width: 1024px) {
.repo-dashboard-container {
grid-template-columns: 1fr;
}
.repo-sidebar {
display: none;
}
.mobile-category-control-group {
display: flex !important;
flex-direction: column;
gap: 8px;
}
/* Mobile: show dropdown */
.filter-select-group {
display: block;
}
/* Skeleton single bar on mobile */
.filter-skeleton {
flex-direction: column;
}
.filter-skeleton-item {
height: 48px;
}
.filter-skeleton-item.short {
display: none;
}
.filter-skeleton-item:not(.short) ~ .filter-skeleton-item:not(.short) {
display: none;
}
.repo-controls {
flex-direction: column;
align-items: stretch;
}
.search-container {
max-width: 100%;
}
.filter-controls {
justify-content: flex-start;
}
.control-group {
flex: 1;
}
}
/* ===========================================
Responsive — Tablet / Large Phone (≤768px)
=========================================== */
@media (max-width: 768px) {
.documents-section {
padding: 80px 16px;
}
.repo-content-header {
gap: 20px;
margin-bottom: 30px;
}
.repo-controls {
padding: 16px;
gap: 16px;
}
#doc-search {
padding: 14px 14px 14px 44px;
font-size: 0.88rem;
}
.filter-controls {
flex-direction: column;
gap: 12px;
}
.control-group {
width: 100%;
}
.date-range-group {
min-width: 0;
}
.date-range-inputs {
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
gap: 8px;
border: none;
background: transparent;
padding: 0;
}
.date-range-inputs .input-wrapper {
background: #f8fafc;
border: 1px solid #e2e8f0;
padding: 10px 14px;
border-radius: 4px;
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.date-range-inputs .input-wrapper:focus-within {
background: white;
border-color: var(--primary-blue);
box-shadow: 0 0 0 3px rgba(0, 49, 80, 0.08);
}
.date-range-inputs input[type="date"] {
width: 100%;
border: none;
background: transparent;
padding: 0;
font-family: inherit;
font-size: 0.82rem;
font-weight: 700;
color: var(--primary-blue);
min-width: 0;
flex: 1;
cursor: pointer;
}
.range-divider {
font-size: 0.75rem;
font-weight: 800;
color: #94a3b8;
padding: 0 4px;
text-transform: uppercase;
}
.select-wrapper,
#sort-filter-wrapper {
min-width: 0;
width: 100%;
}
/* Cards: 2-column when space permits, else single */
.document-grid {
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
gap: 16px;
}
.document-card {
padding: 22px;
}
.document-card:hover {
transform: none;
}
.doc-type-icon {
font-size: 1.8rem;
margin-bottom: 14px;
}
.doc-title {
font-size: 1rem;
}
.doc-meta {
margin-bottom: 16px;
}
.doc-tags {
margin-bottom: 14px;
}
.repo-main-content {
min-height: 400px;
}
}
/* ===========================================
Responsive — Phone (≤480px)
=========================================== */
@media (max-width: 480px) {
.documents-section {
padding: 50px 12px;
}
.custom-dropdown-trigger {
padding: 12px 14px;
font-size: 0.85rem;
}
/* Single column cards */
.document-grid {
grid-template-columns: 1fr;
gap: 12px;
}
.document-card {
padding: 18px;
}
.doc-title {
font-size: 0.95rem;
margin-bottom: 8px;
}
.doc-type-icon {
font-size: 1.5rem;
margin-bottom: 10px;
}
.doc-meta {
margin-bottom: 12px;
}
.doc-tags {
margin-bottom: 10px;
gap: 4px;
}
.doc-tag {
font-size: 0.6rem;
padding: 2px 8px;
}
.btn-action-primary,
.btn-action-outline {
padding: 10px;
font-size: 0.7rem;
}
.doc-actions {
gap: 8px;
}
.repo-controls {
padding: 12px;
gap: 12px;
}
#doc-search {
padding: 12px 12px 12px 40px;
font-size: 0.85rem;
}
.search-icon {
left: 14px;
font-size: 0.9rem;
}
.repo-content-header {
gap: 16px;
margin-bottom: 20px;
}
}
+276
View File
@@ -0,0 +1,276 @@
/* ===========================================
Hero Section (Centered & Immersive) — Tapops
=========================================== */
.research-hero.immersive-hero {
background: radial-gradient(circle at center, #003150 0%, #001e35 100%);
color: white;
padding: 160px 5% 180px;
position: relative;
overflow: hidden;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding-bottom: 200px;
}
.research-hero::before {
content: '';
position: absolute;
width: 800px;
height: 800px;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
background: conic-gradient(from 180deg at 50% 50%,
transparent 0deg,
rgba(254, 180, 1, 0.15) 180deg,
transparent 360deg);
-webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #fff 0);
mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #fff 0);
border-radius: 50%;
pointer-events: none;
z-index: 1;
animation: rotate-orbit 30s linear infinite;
}
@keyframes rotate-orbit {
from {
transform: translate(-50%, -50%) rotate(0deg);
}
to {
transform: translate(-50%, -50%) rotate(360deg);
}
}
.hero-container-centered {
max-width: 900px;
position: relative;
z-index: 2;
width: 100%;
padding: 0 16px;
}
.hero-kicker {
font-size: 0.85rem;
letter-spacing: 4px;
font-weight: 800;
color: var(--secondary-gold);
text-transform: uppercase;
margin-bottom: 24px;
display: inline-block;
}
.hero-title {
font-size: 4.8rem;
font-weight: 800;
line-height: 1.05;
letter-spacing: -3px;
margin-bottom: 30px;
}
.hero-tagline {
font-size: 1.25rem;
line-height: 1.6;
opacity: 0.85;
margin-bottom: 45px;
}
.hero-actions {
display: flex;
justify-content: center;
gap: 20px;
}
/* --- Floating Insight Bar --- */
.hero-floating-stat-bar {
position: absolute;
bottom: 50px;
left: 50%;
transform: translateX(-50%);
display: flex;
align-items: center;
background: rgba(255, 255, 255, 0.03);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.1);
padding: 25px 60px;
border-radius: 4px;
z-index: 3;
gap: 40px;
box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
max-width: calc(100% - 32px);
box-sizing: border-box;
}
.stat-bar-item {
display: flex;
flex-direction: column;
align-items: center;
white-space: nowrap;
}
.stat-bar-value {
font-size: 2.2rem;
font-weight: 800;
color: var(--secondary-gold);
line-height: 1.1;
}
.stat-bar-label {
font-size: 0.7rem;
letter-spacing: 1.5px;
text-transform: uppercase;
font-weight: 700;
opacity: 0.6;
margin-top: 4px;
}
.stat-bar-divider {
width: 1px;
height: 40px;
background: rgba(255, 255, 255, 0.1);
}
/* ===========================================
Hero Responsive
=========================================== */
@media (max-width: 992px) {
.research-hero.immersive-hero {
padding: 120px 5% 180px;
}
.hero-title {
font-size: 3.5rem;
letter-spacing: -2px;
}
.hero-tagline {
font-size: 1.1rem;
}
.hero-floating-stat-bar {
padding: 20px 32px;
gap: 24px;
}
.stat-bar-value {
font-size: 1.6rem;
}
}
@media (max-width: 768px) {
.research-hero.immersive-hero {
padding: 100px 16px 130px;
}
.hero-kicker {
font-size: 0.68rem;
letter-spacing: 2.5px;
margin-bottom: 16px;
}
.hero-title {
font-size: 2.2rem;
letter-spacing: -1px;
margin-bottom: 18px;
}
.hero-tagline {
font-size: 0.9rem;
line-height: 1.5;
margin-bottom: 28px;
}
.hero-actions {
flex-direction: column;
align-items: stretch;
gap: 12px;
width: 100%;
max-width: 320px;
margin: 0 auto;
}
.hero-floating-stat-bar {
width: 100%;
max-width: 320px;
padding: 18px 24px;
gap: 20px;
bottom: 30px;
}
.stat-bar-value {
font-size: 1.3rem;
}
.stat-bar-label {
font-size: 0.6rem;
letter-spacing: 1px;
}
.stat-bar-divider {
height: 30px;
}
.research-hero::before {
width: 400px;
height: 400px;
}
}
@media (max-width: 480px) {
.research-hero.immersive-hero {
padding: 80px 12px 125px;
}
.hero-kicker {
font-size: 0.6rem;
letter-spacing: 2px;
}
.hero-title {
font-size: 1.8rem;
letter-spacing: -0.5px;
margin-bottom: 14px;
}
.hero-tagline {
font-size: 0.82rem;
line-height: 1.45;
margin-bottom: 22px;
}
.hero-actions {
max-width: 280px;
}
.hero-floating-stat-bar {
flex-direction: row;
bottom: 20px;
gap: 16px;
padding: 14px 20px;
width: 100%;
max-width: 280px;
justify-content: space-evenly;
}
.stat-bar-divider {
width: 1px;
height: 24px;
}
.stat-bar-value {
font-size: 1.2rem;
}
.research-hero::before {
width: 280px;
height: 280px;
}
}
+286
View File
@@ -0,0 +1,286 @@
/* ===========================================
Navigation & Mega Menu Styles
Extracted from inline <style> in index.html
=========================================== */
/* ===== MOBILE NAV STABILITY FIX =====
Prevents logo bar from collapsing/shifting on Android when
address bar hides/shows and triggers viewport reflow.
===================================== */
#nav-wrapper {
position: fixed !important;
top: 0;
left: 0;
right: 0;
z-index: 50;
backface-visibility: hidden;
-webkit-backface-visibility: hidden;
will-change: box-shadow;
}
#nav-wrapper>div:first-child {
transform: translateZ(0);
-webkit-transform: translateZ(0);
}
@media (max-width: 1023px) {
#nav-wrapper>div:first-child {
min-height: 0 !important;
max-height: none;
}
}
#pengumuman-bar {
z-index: 40;
}
#pengumuman-bar.is-stuck {
position: fixed;
left: 0;
right: 0;
z-index: 40;
}
@media (prefers-reduced-motion: reduce) {
*,
*::before,
*::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
}
/* Skip Link Styling */
.skip-link {
position: absolute;
top: -40px;
left: 0;
background: #003150;
color: white;
padding: 8px 16px;
z-index: 100;
transition: top 0.3s;
}
.skip-link:focus {
top: 0;
}
/* Focus visible for better keyboard navigation */
:focus-visible {
outline: 3px solid #feb401;
outline-offset: 2px;
}
/* Mega Menu Styles */
.hero-pagination .swiper-pagination-bullet {
width: 8px;
height: 8px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.4);
display: inline-block;
margin: 0 4px;
cursor: pointer;
transition: all 0.3s ease;
}
.hero-pagination .swiper-pagination-bullet-active {
background: rgba(255, 255, 255, 1);
width: 24px;
border-radius: 4px;
}
.mega-panel {
opacity: 0;
visibility: hidden;
transition: opacity 0.2s ease, visibility 0.2s ease;
position: absolute;
top: 100%;
left: 0;
right: 0;
}
.mega-panel.active {
opacity: 1;
visibility: visible;
}
/* Overlay transition */
#mega-overlay {
opacity: 0;
visibility: hidden;
transition: opacity 0.2s ease, visibility 0.2s ease;
}
#mega-overlay.active {
opacity: 1;
visibility: visible;
}
.mega-link-card {
display: flex;
align-items: flex-start;
gap: 1rem;
padding: 1rem;
border-radius: 0.75rem;
border: 1px solid #e2e8f0;
background: white;
transition: all 0.2s ease;
}
.mega-link-card:hover {
border-color: #3b82f6;
box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
transform: translateY(-2px);
}
.mega-link-icon {
width: 2.5rem;
height: 2.5rem;
border-radius: 0.5rem;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
transition: all 0.2s ease;
}
.nav-menu-btn.active {
background: rgba(255, 255, 255, 0.9);
color: #1e40af;
}
.nav-menu-btn:hover {
background: rgba(255, 255, 255, 0.8);
}
/* Mega menu positioning - no gap */
#main-nav {
position: relative;
}
#mega-menu-container {
position: absolute;
top: 100%;
left: 0;
right: 0;
pointer-events: none;
}
#mega-menu-container .mega-panel {
pointer-events: auto;
}
/* Keep pointer bridge under nav to prevent hover loss */
.nav-menu-item {
position: relative;
}
.nav-menu-item::after {
content: '';
position: absolute;
bottom: -12px;
left: 0;
right: 0;
height: 12px;
}
/* ===== Luco Chatbot Animations ===== */
@keyframes slideInRight {
from {
transform: translateX(100px);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
@keyframes fadeInUp {
from {
transform: translateY(10px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
@keyframes lucoPulse {
0%,
100% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
}
#luco-container {
animation: slideInRight 0.5s ease-out forwards;
}
#luco-bubble {
animation: fadeInUp 0.3s ease-out forwards;
width: min(18rem, calc(100vw - 2rem));
}
#luco-btn {
animation: lucoPulse 2s ease-in-out infinite;
}
#luco-btn:hover {
animation: none;
}
/* Typing indicator */
.typing-indicator span {
display: inline-block;
animation: bounce 1.4s infinite ease-in-out;
}
.typing-indicator span:nth-child(1) {
animation-delay: 0s;
}
.typing-indicator span:nth-child(2) {
animation-delay: 0.2s;
}
.typing-indicator span:nth-child(3) {
animation-delay: 0.4s;
}
@keyframes bounce {
0%,
80%,
100% {
transform: translateY(0);
}
40% {
transform: translateY(-6px);
}
}
/* Luco speech bubble arrow */
#luco-bubble .bubble-arrow {
position: absolute;
right: 24px;
bottom: -6px;
width: 12px;
height: 12px;
background: white;
transform: rotate(45deg);
border-right: 1px solid #e2e8f0;
border-bottom: 1px solid #e2e8f0;
}
+45
View File
@@ -0,0 +1,45 @@
/* ===========================================
Responsive Breakpoints — Document Sections
=========================================== */
/* --- Tablet (≤768px) --- */
@media (max-width: 768px) {
.tapops-doc-root .section-title {
font-size: 1.8rem;
letter-spacing: -0.5px;
}
.tapops-doc-root .section-tag {
font-size: 0.68rem;
letter-spacing: 2px;
padding: 5px 12px;
}
.tapops-doc-root .section-header {
margin-bottom: 35px;
}
}
/* --- Phone (≤480px) --- */
@media (max-width: 480px) {
.tapops-doc-root .section-title {
font-size: 1.5rem;
letter-spacing: -0.5px;
}
.tapops-doc-root .section-tag {
font-size: 0.6rem;
letter-spacing: 1.5px;
padding: 4px 10px;
}
.tapops-doc-root .section-subtitle {
font-size: 0.82rem;
}
.tapops-doc-root .section-header {
margin-bottom: 28px;
}
}
+429
View File
@@ -0,0 +1,429 @@
/* ===========================================
Procedures (Modern Process Flow)
=========================================== */
.journey-section {
padding: 120px 5%;
background: #ffffff;
position: relative;
overflow: hidden;
}
.journey-container {
max-width: 1200px;
margin: 0 auto;
}
.process-flow-wrapper {
display: flex;
justify-content: space-between;
gap: 40px;
margin-top: 80px;
position: relative;
}
.process-step {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
position: relative;
}
.step-visual {
position: relative;
margin-bottom: 30px;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
}
.step-icon-box {
width: 80px;
height: 80px;
background: white;
border: 1px solid #e2e8f0;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
color: var(--primary-blue);
box-shadow: 0 10px 25px rgba(0, 49, 80, 0.05);
transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
z-index: 2;
}
.process-step:hover .step-icon-box {
border-color: var(--secondary-gold);
color: var(--secondary-gold);
transform: translateY(-5px);
box-shadow: 0 15px 35px rgba(254, 180, 1, 0.15);
}
.step-number-badge {
position: absolute;
top: 0;
right: calc(50% - 38px);
width: 24px;
height: 24px;
background: var(--secondary-gold);
color: var(--primary-blue);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.7rem;
font-weight: 800;
z-index: 3;
border: 2px solid white;
}
.step-connector {
position: absolute;
left: calc(50% + 50px);
top: 50%;
width: calc(100% - 100px);
height: 2px;
background: repeating-linear-gradient(to right, #e2e8f0, #e2e8f0 5px, transparent 5px, transparent 10px);
z-index: 1;
}
.step-content h3 {
font-size: 1.25rem;
color: var(--primary-blue);
font-weight: 800;
margin-bottom: 15px;
letter-spacing: -0.3px;
}
.step-content p {
font-size: 0.95rem;
color: #64748b;
line-height: 1.7;
max-width: 280px;
margin: 0 auto;
}
@media (max-width: 1024px) {
.process-flow-wrapper {
gap: 20px;
}
.step-connector {
display: none;
}
}
@media (max-width: 768px) {
.process-flow-wrapper {
flex-direction: column;
gap: 60px;
}
.process-step {
flex-direction: row;
text-align: left;
align-items: flex-start;
gap: 30px;
}
.step-visual {
width: 80px;
flex-shrink: 0;
margin-bottom: 0;
}
.step-number-badge {
right: 0;
}
.step-content p {
margin: 0;
max-width: 100%;
}
}
/* ===========================================
Help Center (Interaction Cards)
=========================================== */
.help-center-section {
padding: 100px 5%;
background: white;
}
.help-container {
max-width: 1100px;
margin: 0 auto;
}
.help-header-centered {
text-align: center;
margin-bottom: 60px;
}
.help-cards-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}
.interaction-card {
position: relative;
border-radius: 4px;
overflow: hidden;
padding: 2px;
}
.help-official {
background: linear-gradient(135deg, var(--primary-blue) 0%, #001e35 100%);
}
.help-urgent {
background: linear-gradient(135deg, var(--secondary-gold) 0%, #ffd54f 100%);
}
.card-inner {
background: white;
padding: 50px;
height: 100%;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
border-radius: 2px;
}
.help-official .card-inner {
border: 1px solid rgba(0, 49, 80, 0.05);
}
.card-icon {
width: 80px;
height: 80px;
background: #f8fafc;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
margin-bottom: 30px;
color: var(--primary-blue);
}
.help-urgent .card-icon {
background: rgba(254, 180, 1, 0.1);
color: var(--secondary-gold);
}
.interaction-card h3 {
font-size: 1.5rem;
color: var(--primary-blue);
margin-bottom: 15px;
font-weight: 800;
}
.interaction-card p {
font-size: 1rem;
color: #64748b;
line-height: 1.6;
margin-bottom: 30px;
}
.card-checklist {
list-style: none;
margin-bottom: 40px;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
padding: 0;
}
.card-checklist li {
font-size: 0.85rem;
font-weight: 700;
color: var(--primary-blue);
display: flex;
align-items: center;
gap: 8px;
}
.card-checklist li i {
color: #10b981;
}
a.btn-interaction,
a.btn-interaction-alt {
width: 100%;
padding: 18px;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 2px;
font-size: 0.85rem;
text-decoration: none;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}
a.btn-interaction {
background: var(--primary-blue);
color: white;
}
a.btn-interaction-alt {
background: var(--secondary-gold);
color: var(--primary-blue);
}
a.btn-interaction:hover {
background: #0f172a;
transform: translateY(-2px);
color: white;
}
a.btn-interaction-alt:hover {
background: #facc15;
transform: translateY(-2px);
color: var(--primary-blue);
}
@media (max-width: 768px) {
.journey-section {
padding: 80px 16px;
}
.help-center-section {
padding: 80px 16px;
}
.help-cards-grid {
grid-template-columns: 1fr;
}
.card-inner {
padding: 35px 24px;
}
.interaction-card h3 {
font-size: 1.25rem;
}
.interaction-card p {
font-size: 0.9rem;
}
.card-icon {
width: 64px;
height: 64px;
font-size: 1.6rem;
margin-bottom: 24px;
}
a.btn-interaction,
a.btn-interaction-alt {
padding: 14px;
font-size: 0.78rem;
letter-spacing: 1.5px;
}
.process-flow-wrapper {
margin-top: 50px;
}
.step-content h3 {
font-size: 1.1rem;
}
.step-content p {
font-size: 0.88rem;
}
}
@media (max-width: 480px) {
.journey-section {
padding: 50px 12px;
}
.help-center-section {
padding: 50px 12px;
}
.help-header-centered {
margin-bottom: 40px;
}
.card-inner {
padding: 28px 18px;
}
.card-icon {
width: 56px;
height: 56px;
font-size: 1.4rem;
margin-bottom: 20px;
}
.interaction-card h3 {
font-size: 1.1rem;
}
.interaction-card p {
font-size: 0.85rem;
margin-bottom: 20px;
}
.card-checklist {
margin-bottom: 28px;
gap: 8px;
}
.card-checklist li {
font-size: 0.78rem;
}
a.btn-interaction,
a.btn-interaction-alt {
padding: 12px;
font-size: 0.72rem;
letter-spacing: 1px;
}
.process-flow-wrapper {
margin-top: 35px;
gap: 40px;
}
.process-step {
gap: 20px;
}
.step-icon-box {
width: 60px;
height: 60px;
font-size: 1.4rem;
}
.step-content h3 {
font-size: 1rem;
}
.step-content p {
font-size: 0.82rem;
line-height: 1.6;
}
.step-number-badge {
width: 20px;
height: 20px;
font-size: 0.6rem;
}
}
+15
View File
@@ -0,0 +1,15 @@
/* ===========================================
Design Tokens — TAPOPS (Informatika UNTAN)
Overrides edo variable names with Tapops palette.
All document section CSS files inherit from here.
=========================================== */
:root {
--primary-blue: #003150; /* Tapops navy (was #1b3652) */
--secondary-gold: #feb401; /* Tapops yellow (was #f7b738) */
--text-dark: #1e293b; /* slate-800 (was #222) */
--text-light: #fff;
--bg-light: #f8fafc; /* slate-50 (was #f4f6f9) */
--border-color: #e2e8f0; /* slate-200 (was #eaeaea) */
--shadow: 0 18px 35px rgba(0, 49, 80, 0.08);
}
+234
View File
@@ -0,0 +1,234 @@
/* ===========================================
Viewer Page — PDF iframe + DOCX rendered preview
=========================================== */
.viewer-body {
margin: 0;
background: var(--bg-light);
font-family: 'Roboto', sans-serif;
min-height: 100vh;
display: flex;
flex-direction: column;
}
/* --- Header --- */
.viewer-header {
background: var(--primary-blue);
color: var(--text-light);
padding: 16px 32px;
display: flex;
justify-content: space-between;
align-items: center;
gap: 24px;
box-shadow: var(--shadow);
flex-wrap: wrap;
position: sticky;
top: 0;
z-index: 10;
}
.viewer-header-left {
display: flex;
align-items: center;
gap: 20px;
flex: 1;
min-width: 0;
}
.viewer-title-group {
display: flex;
flex-direction: column;
gap: 4px;
min-width: 0;
}
.viewer-title {
margin: 0;
font-size: 1.1rem;
font-weight: 700;
color: var(--text-light);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.viewer-type-badge {
display: inline-block;
width: fit-content;
padding: 2px 10px;
background: var(--secondary-gold);
color: var(--primary-blue);
border-radius: 4px;
font-size: 0.7rem;
font-weight: 800;
letter-spacing: 0.5px;
}
/* --- Buttons --- */
.btn-back,
.btn-download,
.btn-back-mini {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 18px;
border-radius: 6px;
font-weight: 700;
font-size: 0.85rem;
text-decoration: none;
transition: all 0.2s ease;
white-space: nowrap;
}
.btn-back {
background: rgba(255, 255, 255, 0.1);
color: var(--text-light);
border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-back:hover {
background: rgba(255, 255, 255, 0.2);
}
.btn-download {
background: var(--secondary-gold);
color: var(--primary-blue);
}
.btn-download:hover {
transform: translateY(-1px);
box-shadow: 0 6px 16px rgba(254, 180, 1, 0.4);
}
.btn-back-mini {
background: var(--primary-blue);
color: var(--text-light);
margin-top: 12px;
}
.btn-back-mini:hover {
background: #001e35;
}
/* --- Content area --- */
.viewer-content {
flex: 1;
display: flex;
flex-direction: column;
background: #525659;
min-height: calc(100vh - 80px);
position: relative;
}
.viewer-pdf-frame {
flex: 1;
width: 100%;
border: none;
min-height: calc(100vh - 80px);
}
.viewer-docx-content {
background: white;
margin: 24px auto;
padding: 60px 80px;
max-width: 900px;
width: calc(100% - 48px);
box-sizing: border-box;
box-shadow: var(--shadow);
border-radius: 4px;
overflow-x: auto;
color: var(--text-dark);
line-height: 1.6;
font-family: 'Roboto', sans-serif;
}
/* docx-preview injects its own structure; override its defaults gently. */
.viewer-docx-content .docx-wrapper {
background: transparent !important;
padding: 0 !important;
}
.viewer-docx-content .docx {
box-shadow: none !important;
margin: 0 !important;
}
/* --- States --- */
.viewer-loading,
.viewer-error {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 16px;
color: var(--text-light);
font-size: 1rem;
font-weight: 600;
padding: 60px 20px;
text-align: center;
}
.viewer-loading i {
font-size: 3rem;
color: var(--secondary-gold);
}
.viewer-error i {
font-size: 3rem;
color: #ef4444;
}
/* --- Download Progress Bar --- */
.viewer-progress-bar {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 3px;
background: rgba(255, 255, 255, 0.1);
z-index: 5;
overflow: hidden;
}
.viewer-progress-fill {
height: 100%;
width: 0%;
background: linear-gradient(90deg, var(--secondary-gold), #ffd54f);
border-radius: 0 2px 2px 0;
transition: width 0.2s ease-out;
}
/* --- Responsive --- */
@media (max-width: 640px) {
.viewer-header {
padding: 12px 16px;
gap: 12px;
}
.viewer-header-left {
gap: 12px;
}
.viewer-title {
font-size: 0.95rem;
}
.viewer-docx-content {
padding: 24px;
margin: 12px;
width: calc(100% - 24px);
}
.btn-back,
.btn-download {
padding: 8px 14px;
font-size: 0.8rem;
}
}