@import url('https://fonts.googleapis.com/css2?family=LXGW+WenKai+Mono+TC:wght@400;700&display=swap'); *, html, body { margin: 0; padding: 0; box-sizing: border-box; font-family: "LXGW WenKai Mono TC", monospace; } body { background-color: #000033; background-image: radial-gradient(circle at 25% 25%, #1a0033 0%, transparent 50%), radial-gradient(circle at 75% 75%, #001a33 0%, transparent 50%); color: #ccccff; margin: 0; padding: 0; min-height: 100vh; display: flex; flex-direction: column; min-width: 1200px; } a { color: #99ccff; text-decoration: none; } a:hover { color: #99ffcc; text-decoration: underline; } nav { background-color: #0d001a; padding: 16px 16px 16px 16px; display: flex; justify-content: space-between; align-items: center; position: relative; border-bottom: 1px solid #ff99cc; } nav::before { content: "✦ ✧ ✦ ✧ ✦ ✧ ✦ ✧ ✦ ✧ ✦ ✧ ✦ ✧ ✦ ✧ ✦ ✧ ✦ ✧"; position: absolute; top: 15px; left: 0; right: 0; text-align: center; color: #ffccee; z-index: 0; } .nav-left, .nav-right { display: flex; align-items: center; gap: 16px; z-index: 1; } .nav-title { color: #ffccff; font-weight: bold; } .nav-title:hover { color: #ff99ff; text-decoration: none; } .user-status { color: #ccffcc; } main { display: flex; margin: 0 auto; gap: 10px; padding: 10px; flex: 1; } .sidebar { background-color: #0d0020; border: 1px solid #4d4d80; padding: 8px; height: fit-content; } .sidebar h3 { background: linear-gradient(to right, #330066, #1a0033); color: #ffccff; margin: 0 0 8px 0; padding: 4px; text-align: center; border: 1px solid #ff99cc; font-weight: bold; } .sidebar div:not(:first-child) h3 { margin-top: 16px; } .sidebar-content { display: flex; flex-direction: column; gap: 8px; } .sidebar-tag:hover { text-decoration: none; filter: brightness(1.3); } .sidebar-tag::before, .sidebar-stat::before { content: "»"; margin: 0px 8px; } .tag-count, .sidebar-stat-value { color: #cccccc; } .content { flex: 1; background-color: #0a0015; border: 1px solid #4d4d80; padding: 10px; } .content-main h1 { color: #ff99cc; margin-bottom: 8px; } .centered-main { display: flex; flex-direction: column; justify-content: center; align-items: center; height: 100%; min-height: 580px; } .centered-horizontal { display: flex; justify-content: center; align-items: center; width: 100%; } .centered-main h1, .centered-horizontal h1 { color: #ffccff; margin: 8px 0px; } .centered-main p, .centered-horizontal p { color: #99ffcc; } .main-img { max-width: 768px; max-height: 576px; } .search-container { background-color: #0d001a; border: 1px solid #6666cc; padding: 8px; text-align: center; } .search-container input[type="text"] { width: 100%; flex: 1; } .centered-main>.search-container { width: 768px; } .search-container form { display: flex; gap: 8px; align-items: center; } input[type="text"], input[type="email"], input[type="password"], input[type="number"], input[type="url"] { background-color: #1a0033; border: 1px solid #9999ff; color: #ccccff; padding: 3px 5px; } input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, input[type="number"]:focus, input[type="url"]:focus { border-color: #ff99cc; background-color: #260040; outline: none; } input[type="button"], button[type="button"], input[type="submit"] { background-color: #330066; border: 1px solid #9999ff; color: #ccccff; padding: 3px 8px; cursor: pointer; } input[type="button"]:hover, button[type="button"]:hover, input[type="submit"]:hover { background-color: #ff99cc; color: #1a001a; } .rating-toggles { display: flex; gap: 4px; align-items: center; } .rating-checkbox { display: flex; align-items: center; cursor: pointer; } .rating-checkbox input[type="checkbox"] { display: none; } .checkbox-custom { width: 24px; height: 24px; border: 2px solid #666; background-color: #1a0033; transition: all 0.2s ease; } .checkbox-custom.safe { border-color: #388e3c; } .checkbox-custom.questionable { border-color: #f57c00; } .checkbox-custom.sensitive { border-color: #7b1fa2; } .checkbox-custom.explicit { border-color: #d32f2f; } .rating-checkbox input[type="checkbox"]:checked+.checkbox-custom.safe { background-color: #4caf50; border-color: #388e3c; border-width: 2px; } .rating-checkbox input[type="checkbox"]:checked+.checkbox-custom.questionable { background-color: #ff9800; border-color: #f57c00; border-width: 2px; } .rating-checkbox input[type="checkbox"]:checked+.checkbox-custom.sensitive { background-color: #9c27b0; border-color: #7b1fa2; border-width: 2px; } .rating-checkbox input[type="checkbox"]:checked+.checkbox-custom.explicit { background-color: #f44336; border-color: #d32f2f; border-width: 2px; } footer { background-color: #0d001a; border-top: 1px solid #ff99cc; padding: 10px 0 16px 0; text-align: center; color: #ccccff; margin-top: 16px; } footer::before { content: "✧ ✦ ✧ ✦ ✧ ✦ ✧ ✦ ✧ ✦ ✧ ✦ ✧ ✦ ✧ ✦ ✧ ✦ ✧ ✦"; display: block; color: #ffccee; margin-bottom: 10px; } .bordered-box { border: 1px solid #4d4d80; padding: 8px; } .bordered-box hr { border: 1px solid #4d4d80; margin: 8px 0; } .ibform { background-color: #0d001a; border: 1px solid #ff99cc; padding: 8px; margin: 16px auto; } .fgroup { border: 1px dashed #4d4d80; padding: 10px; display: flex; flex-direction: row; } .fg-main { display: flex; min-width: 128px; } .fg-sub { display: flex; flex: 1; flex-direction: column; gap: 4px; } .fg-sub small { color: #ff99cc; } .fg-main label { color: #ffccff; font-weight: bold; } .fg-sub input { border-style: double; border-width: 3px; border-color: #9999ff; width: 100%; } .fbtngrp { margin: 8px 0 0 0; } .fbtngrp input { padding: 4px 8px; } .q-img { max-width: 768px; } .error { color: #ffccff; background-color: #330000; border: 1px solid #ff0000; padding: 8px; margin-bottom: 16px; text-align: center; } .success { color: #ccffcc; background-color: #003300; border: 1px solid #00ff00; padding: 8px; margin-bottom: 16px; text-align: center; } .upload-drag-box { border: 2px dashed #9999ff; background-color: #1a0033; padding-top: 20px; text-align: center; cursor: pointer; width: 768px; margin: 24px 0px 12px 0px; } .upload-drag-box.dragover { border-color: #ff99cc; background-color: #260040; transition: background 0.2s, border-color 0.2s, box-shadow 0.2s; } .upload-drag-box h1 { margin: 0; } .upload-drag-box p { margin: 8px 0 12px 0; } .upload-drag-box small { display: block; border-top: 1px dashed #9999ff; margin-top: 20px; padding-top: 10px; padding-bottom: 10px; } .upload-area { display: flex; flex-direction: column; align-items: flex-start; } .upload-via-link>form { display: flex; flex-direction: row; gap: 8px; align-items: center; width: 768px; } .upload-via-link>form input[type="url"] { flex: 1; width: 100%; } .upload-previews { margin-top: 16px; width: 768px; } .preview-area { display: flex; flex-direction: row; gap: 8px; margin-bottom: 16px; } .preview-image { width: 96px; height: 96px; object-fit: cover; border: 1px solid #9999ff; flex-shrink: 0; } .preview-details { display: flex; flex-direction: column; gap: 8px; flex: 1 1 0; min-width: 0; } .preview-link { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 100%; min-width: 0; } .preview-rating-form { display: flex; flex-direction: row; gap: 8px; align-items: center; } .preview-remove-btn { display: inline-block; width: auto; align-self: flex-start; max-width: 120px; } .upload-area { position: relative; overflow: hidden; } .upload-drag-box { position: relative; } .upload-loading-indicator { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: #1a0033cc; box-shadow: none; transition: none; z-index: 20; pointer-events: none; } .ib-loader-spinner { position: relative; width: 32px; height: 32px; } .ib-loader-seg { position: absolute; width: 7px; height: 7px; background: #222244; border: 1px solid #fff; border-radius: 1px; opacity: 0.35; box-shadow: none; transition: opacity 0.1s, background 0.1s; } .ib-loader-seg.active { opacity: 1; background: #ff99cc; box-shadow: 0 0 2px 0 #99ccff; } .ib-loader-seg:nth-child(1) { top: 0px; left: 12px; } .ib-loader-seg:nth-child(2) { top: 3px; left: 19px; } .ib-loader-seg:nth-child(3) { top: 8px; left: 24px; } .ib-loader-seg:nth-child(4) { top: 15px; left: 27px; } .ib-loader-seg:nth-child(5) { top: 22px; left: 24px; } .ib-loader-seg:nth-child(6) { top: 27px; left: 19px; } .ib-loader-seg:nth-child(7) { top: 30px; left: 12px; } .ib-loader-seg:nth-child(8) { top: 27px; left: 5px; } .ib-loader-seg:nth-child(9) { top: 22px; left: 0px; } .ib-loader-seg:nth-child(10) { top: 15px; left: -3px; } .ib-loader-seg:nth-child(11) { top: 8px; left: 0px; } .ib-loader-seg:nth-child(12) { top: 3px; left: 5px; } /* Upload All Button Styles */ .upload-all-btn { padding: 12px 24px; cursor: pointer; transition: all 0.3s ease; width: auto; min-width: 120px; } .upload-all-btn:disabled { cursor: not-allowed; opacity: 0.6; } .upload-all-btn.uploading { background-color: #444400; border-color: #ffff00; color: #ffffcc; } .upload-all-btn.success { background-color: #004400; border-color: #00ff00; color: #ccffcc; animation: successPulse 1s ease-in-out; } .upload-all-btn.warning { background-color: #664400; border-color: #ffaa00; color: #ffeecc; } .upload-all-btn.error { background-color: #440000; border-color: #ff0000; color: #ffcccc; } @keyframes successPulse { 0% { box-shadow: 0 0 0 rgba(0, 255, 0, 0.4); } 50% { box-shadow: 0 0 16px rgba(0, 255, 0, 0.6); } 100% { box-shadow: 0 0 0 rgba(0, 255, 0, 0.4); } } .preview-area.uploaded { opacity: 0.7; background-color: rgba(0, 68, 0, 0.1); border-left: 3px solid #00ff00; padding-left: 8px; } .preview-area.upload-error { background-color: rgba(68, 0, 0, 0.1); border-left: 3px solid #ff0000; padding-left: 8px; } .preview-remove-btn.uploaded { background-color: #004400; border-color: #00ff00; color: #ccffcc; cursor: default; } .preview-remove-btn.uploading { background-color: #333333; border-color: #666666; color: #999999; cursor: not-allowed; opacity: 0.6; } .preview-remove-btn.error { background-color: #440000; border-color: #ff0000; color: #ffcccc; }