- Added copy quote functionality with clipboard integration - Implemented bulk moderation actions for admin - Created mobile responsive design with bash.org styling - Added API rate limiting per IP address - Implemented dark mode toggle with flash prevention - Enhanced error messages throughout application - Fixed all security vulnerabilities (SQL injection, XSS, CSRF) - Added comprehensive rate limiting on all endpoints - Implemented secure session configuration - Added input validation and length limits - Created centralized configuration system with config.json - Set up production deployment with Gunicorn - Added security headers and production hardening - Added password generation and config management tools
525 lines
9.7 KiB
CSS
525 lines
9.7 KiB
CSS
/* Global Styles */
|
|
body {
|
|
background-color: #ffffff;
|
|
color: #000000;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
transition: background-color 0.3s, color 0.3s;
|
|
}
|
|
|
|
/* Links */
|
|
a {
|
|
color: #c08000;
|
|
text-decoration: none;
|
|
transition: color 0.3s;
|
|
}
|
|
|
|
a:visited, a:link, a:hover {
|
|
color: #c08000;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* Table and Layout */
|
|
table {
|
|
width: 80%;
|
|
margin: 20px auto;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
td {
|
|
padding: 10px;
|
|
}
|
|
|
|
/* Headers */
|
|
h2 {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
font-size: 20px;
|
|
margin-bottom: 20px;
|
|
color: #c08000;
|
|
}
|
|
|
|
/* Text Classes */
|
|
.smalltext {
|
|
font-size: 10px;
|
|
background-color: #f0f0f0;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.bodytext {
|
|
line-height: 21px;
|
|
font-size: smaller;
|
|
color: #000000;
|
|
}
|
|
|
|
.footertext {
|
|
font-size: smaller;
|
|
color: #000000;
|
|
text-align: center;
|
|
}
|
|
|
|
.toplinks {
|
|
font-size: smaller;
|
|
color: #000000;
|
|
text-align: right;
|
|
padding-right: 20px;
|
|
}
|
|
|
|
.topnum {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
color: #000000;
|
|
}
|
|
|
|
/* Input Fields */
|
|
input.text, textarea, select {
|
|
color: #000000;
|
|
background-color: #ffffff;
|
|
padding: 5px;
|
|
border: 1px solid #c08000;
|
|
border-radius: 4px;
|
|
transition: background-color 0.3s, color 0.3s;
|
|
}
|
|
|
|
input.button {
|
|
background-color: #c08000;
|
|
color: #000000;
|
|
padding: 5px 10px;
|
|
border: none;
|
|
cursor: pointer;
|
|
transition: background-color 0.3s;
|
|
}
|
|
|
|
input.button:hover {
|
|
background-color: #a06500;
|
|
}
|
|
|
|
/* Quote Styling */
|
|
.qt {
|
|
font-family: 'Courier New', 'Lucida Console', monospace;
|
|
font-size: 10pt;
|
|
margin-top: 0px;
|
|
}
|
|
|
|
.qa {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
font-size: 10pt;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
background-color: #f0f0f0;
|
|
border: 1px solid #808080;
|
|
padding: 1px 4px;
|
|
margin: 0 1px;
|
|
color: #000000;
|
|
display: inline-block;
|
|
min-width: 12px;
|
|
text-align: center;
|
|
}
|
|
|
|
.qa:hover {
|
|
background-color: #e0e0e0;
|
|
border-color: #606060;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.qa:active {
|
|
background-color: #d0d0d0;
|
|
border: 1px inset #808080;
|
|
}
|
|
|
|
.quote {
|
|
font-family: 'Courier New', 'Lucida Console', monospace;
|
|
font-size: smaller;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
/* Borders for Quotes and Other Content */
|
|
td.quote-box {
|
|
border: 1px solid #c08000;
|
|
padding: 10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
/* Footer */
|
|
footer {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
font-size: smaller;
|
|
background-color: #c08000;
|
|
padding: 10px;
|
|
text-align: center;
|
|
color: #000000;
|
|
}
|
|
|
|
/* Pagination */
|
|
#pagination {
|
|
text-align: center;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
#pagination a {
|
|
color: #c08000;
|
|
text-decoration: none;
|
|
padding: 5px 10px;
|
|
border: 1px solid #c08000;
|
|
margin: 0 5px;
|
|
border-radius: 4px;
|
|
transition: background-color 0.3s, color 0.3s;
|
|
}
|
|
|
|
#pagination a:hover {
|
|
background-color: #f0f0f0;
|
|
color: #000000;
|
|
}
|
|
|
|
/* Quote List */
|
|
.quote-list {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.quote-item {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.quote-id {
|
|
color: #c08000;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.quote-id:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* Dark Mode Toggle Button */
|
|
#theme-toggle {
|
|
background-color: #f0f0f0;
|
|
border: 2px outset #c0c0c0;
|
|
color: #000000;
|
|
padding: 4px 8px;
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
margin-left: 10px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
#theme-toggle:hover {
|
|
background-color: #e0e0e0;
|
|
}
|
|
|
|
#theme-toggle:active {
|
|
border: 2px inset #c0c0c0;
|
|
}
|
|
|
|
/* Dark Mode Styles */
|
|
body.dark-theme {
|
|
background-color: #121212;
|
|
color: #d1d1d1;
|
|
}
|
|
|
|
body.dark-theme a {
|
|
color: #ffa500;
|
|
}
|
|
|
|
body.dark-theme a:hover {
|
|
color: #ffcc80;
|
|
}
|
|
|
|
body.dark-theme .bodytext {
|
|
color: #e0e0e0;
|
|
}
|
|
|
|
body.dark-theme .qt {
|
|
color: #ffffff;
|
|
background-color: #1e1e1e;
|
|
padding: 10px;
|
|
border-radius: 4px;
|
|
border-left: 3px solid #ffa500;
|
|
}
|
|
|
|
body.dark-theme .qa {
|
|
background-color: #2e2e2e;
|
|
color: #ffffff;
|
|
border: 1px solid #ffa500;
|
|
}
|
|
|
|
body.dark-theme .qa:hover {
|
|
background-color: #3e3e3e;
|
|
color: #ffcc80;
|
|
}
|
|
|
|
body.dark-theme table {
|
|
background-color: #1e1e1e;
|
|
border: 1px solid #ffa500;
|
|
}
|
|
|
|
body.dark-theme td[bgcolor="#c08000"] {
|
|
background-color: #c08000 !important;
|
|
}
|
|
|
|
body.dark-theme td[bgcolor="#f0f0f0"] {
|
|
background-color: #2e2e2e !important;
|
|
color: #d1d1d1;
|
|
}
|
|
|
|
body.dark-theme #theme-toggle {
|
|
background-color: #2e2e2e;
|
|
border: 2px outset #555555;
|
|
color: #ffffff;
|
|
}
|
|
|
|
body.dark-theme #theme-toggle:hover {
|
|
background-color: #3e3e3e;
|
|
}
|
|
|
|
body.dark-theme #theme-toggle:active {
|
|
border: 2px inset #555555;
|
|
}
|
|
|
|
body.dark-theme input[type="text"],
|
|
body.dark-theme input[type="number"],
|
|
body.dark-theme textarea,
|
|
body.dark-theme select {
|
|
background-color: #2e2e2e;
|
|
color: #ffffff;
|
|
border: 1px solid #555555;
|
|
}
|
|
|
|
body.dark-theme input[type="submit"],
|
|
body.dark-theme button {
|
|
background-color: #2e2e2e;
|
|
color: #ffffff;
|
|
border: 2px outset #555555;
|
|
}
|
|
|
|
body.dark-theme input[type="submit"]:hover,
|
|
body.dark-theme button:hover {
|
|
background-color: #3e3e3e;
|
|
}
|
|
|
|
/* Override inline font colors in dark mode */
|
|
body.dark-theme font[color="green"] {
|
|
color: #90ee90 !important;
|
|
}
|
|
|
|
body.dark-theme font {
|
|
color: inherit !important;
|
|
}
|
|
|
|
/* Apply dark theme when class is on html element (prevents flash) */
|
|
html.dark-theme body {
|
|
background-color: #121212;
|
|
color: #d1d1d1;
|
|
}
|
|
|
|
html.dark-theme a {
|
|
color: #ffa500;
|
|
}
|
|
|
|
html.dark-theme a:hover {
|
|
color: #ffcc80;
|
|
}
|
|
|
|
html.dark-theme .bodytext {
|
|
color: #d1d1d1;
|
|
}
|
|
|
|
html.dark-theme .qt {
|
|
background-color: #2e2e2e;
|
|
color: #ffffff;
|
|
border-left: 3px solid #ffa500;
|
|
}
|
|
|
|
html.dark-theme .qa {
|
|
background-color: #333;
|
|
color: #d1d1d1;
|
|
border-color: #555;
|
|
}
|
|
|
|
html.dark-theme .qa:hover {
|
|
background-color: #444;
|
|
color: #fff;
|
|
}
|
|
|
|
html.dark-theme table {
|
|
background-color: #2e2e2e;
|
|
}
|
|
|
|
html.dark-theme td[bgcolor="#c08000"] {
|
|
background-color: #8b4513 !important;
|
|
}
|
|
|
|
html.dark-theme td[bgcolor="#f0f0f0"] {
|
|
background-color: #333 !important;
|
|
}
|
|
|
|
html.dark-theme #theme-toggle {
|
|
background-color: #333;
|
|
color: #d1d1d1;
|
|
border-color: #555;
|
|
}
|
|
|
|
html.dark-theme #theme-toggle:hover {
|
|
background-color: #444;
|
|
}
|
|
|
|
html.dark-theme #theme-toggle:active {
|
|
background-color: #3e3e3e;
|
|
}
|
|
|
|
html.dark-theme input[type="text"],
|
|
html.dark-theme input[type="number"],
|
|
html.dark-theme textarea,
|
|
html.dark-theme select {
|
|
background-color: #333;
|
|
color: #d1d1d1;
|
|
border-color: #555;
|
|
}
|
|
|
|
html.dark-theme input[type="submit"],
|
|
html.dark-theme button {
|
|
background-color: #444;
|
|
color: #d1d1d1;
|
|
border-color: #666;
|
|
}
|
|
|
|
html.dark-theme input[type="submit"]:hover,
|
|
html.dark-theme button:hover {
|
|
background-color: #3e3e3e;
|
|
}
|
|
|
|
/* Override inline font colors in dark mode (for html element) */
|
|
html.dark-theme font[color="green"] {
|
|
color: #90ee90 !important;
|
|
}
|
|
|
|
html.dark-theme font {
|
|
color: inherit !important;
|
|
}
|
|
|
|
/* Mobile Responsive Design */
|
|
@media screen and (max-width: 768px) {
|
|
/* Make tables and content mobile-friendly while keeping bash.org aesthetic */
|
|
table {
|
|
width: 95%;
|
|
font-size: 14px;
|
|
}
|
|
|
|
/* Navigation links - stack on small screens */
|
|
.toplinks {
|
|
font-size: 12px;
|
|
text-align: center;
|
|
padding: 5px;
|
|
}
|
|
|
|
/* Quote buttons - make them touch-friendly */
|
|
.qa {
|
|
padding: 8px 12px;
|
|
margin: 2px;
|
|
min-width: 35px;
|
|
font-size: 16px;
|
|
display: inline-block;
|
|
text-align: center;
|
|
}
|
|
|
|
/* Quote text - ensure readability */
|
|
.qt {
|
|
font-size: 14px;
|
|
line-height: 1.4;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
/* Quote header - adjust spacing */
|
|
.quote {
|
|
font-size: 14px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
/* Form elements - make touch-friendly */
|
|
input[type="text"], input[type="number"], textarea, select {
|
|
width: 90%;
|
|
padding: 10px;
|
|
font-size: 16px; /* Prevents zoom on iOS */
|
|
margin: 5px 0;
|
|
}
|
|
|
|
input[type="submit"], button {
|
|
padding: 10px 15px;
|
|
font-size: 16px;
|
|
margin: 5px;
|
|
min-height: 44px; /* iOS touch target */
|
|
}
|
|
|
|
/* Pagination - mobile friendly */
|
|
#pagination {
|
|
font-size: 14px;
|
|
text-align: center;
|
|
padding: 10px;
|
|
}
|
|
|
|
#pagination a {
|
|
padding: 8px 12px;
|
|
margin: 2px;
|
|
display: inline-block;
|
|
}
|
|
|
|
/* ModApp table - horizontal scroll for wide tables */
|
|
.modapp-table-container {
|
|
overflow-x: auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
|
|
.modapp-table-container table {
|
|
min-width: 600px;
|
|
width: auto;
|
|
}
|
|
|
|
/* Hide less important columns on mobile */
|
|
@media screen and (max-width: 480px) {
|
|
.mobile-hide {
|
|
display: none;
|
|
}
|
|
|
|
.qa {
|
|
padding: 6px 10px;
|
|
font-size: 14px;
|
|
min-width: 30px;
|
|
}
|
|
|
|
.quote {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.qt {
|
|
font-size: 13px;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Touch-friendly improvements for all screen sizes */
|
|
@media (hover: none) and (pointer: coarse) {
|
|
/* This targets touch devices */
|
|
.qa {
|
|
padding: 10px 15px;
|
|
margin: 3px;
|
|
min-height: 44px;
|
|
min-width: 44px;
|
|
}
|
|
|
|
a {
|
|
padding: 5px;
|
|
margin: 2px;
|
|
}
|
|
|
|
/* Ensure all interactive elements are large enough */
|
|
button, input[type="submit"], input[type="button"] {
|
|
min-height: 44px;
|
|
min-width: 44px;
|
|
padding: 10px;
|
|
}
|
|
}
|
|
|