1.started removal of CDNs.\n 2. Improved modular structure for all parts of project including database.

This commit is contained in:
2024-08-30 23:27:28 +01:00
parent 18977c8cac
commit f9cd9ec33a
2895 changed files with 490579 additions and 7561 deletions

View File

@@ -0,0 +1,45 @@
:root {
--background-color: #121212;
--text-color: #e0e0e0;
--primary-color: #bb86fc;
--secondary-color: #03dac6;
--success-color: #00c853;
--danger-color: #cf6679;
--warning-color: #ffab00;
--info-color: #2196f3;
--light-color: #2c2c2c;
--dark-color: #1f1f1f;
--border-color: #333333;
--shadow-color: rgba(255, 255, 255, 0.1);
/* Header */
--header-bg: #1f1f1f;
--header-text: #e0e0e0;
/* Footer */
--footer-bg: #1f1f1f;
--footer-text: #a0a0a0;
/* Navigation */
--nav-bg: #1f1f1f;
--nav-text: #e0e0e0;
--nav-hover-bg: #2c2c2c;
--nav-hover-text: #bb86fc;
/* Buttons */
--btn-primary-bg: #bb86fc;
--btn-primary-text: #121212;
--btn-secondary-bg: #03dac6;
--btn-secondary-text: #121212;
/* Forms */
--input-bg: #2c2c2c;
--input-border: #454545;
--input-text: #e0e0e0;
--input-focus-border: #bb86fc;
/* Cards */
--card-bg: #1f1f1f;
--card-border: #333333;
--card-shadow: 0 0.125rem 0.25rem rgba(255, 255, 255, 0.05);
}

View File

@@ -0,0 +1,45 @@
:root {
--background-color: #ffffff;
--text-color: #333333;
--primary-color: #007bff;
--secondary-color: #6c757d;
--success-color: #28a745;
--danger-color: #dc3545;
--warning-color: #ffc107;
--info-color: #17a2b8;
--light-color: #f8f9fa;
--dark-color: #343a40;
--border-color: #dee2e6;
--shadow-color: rgba(0, 0, 0, 0.1);
/* Header */
--header-bg: #f8f9fa;
--header-text: #333333;
/* Footer */
--footer-bg: #f8f9fa;
--footer-text: #6c757d;
/* Navigation */
--nav-bg: #ffffff;
--nav-text: #333333;
--nav-hover-bg: #f1f3f5;
--nav-hover-text: #007bff;
/* Buttons */
--btn-primary-bg: #007bff;
--btn-primary-text: #ffffff;
--btn-secondary-bg: #6c757d;
--btn-secondary-text: #ffffff;
/* Forms */
--input-bg: #ffffff;
--input-border: #ced4da;
--input-text: #495057;
--input-focus-border: #80bdff;
/* Cards */
--card-bg: #ffffff;
--card-border: #dee2e6;
--card-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}