|
@@ -0,0 +1,218 @@
|
|
|
|
|
+/* Better WIKAMP - Subjects List Interface CSS */
|
|
|
|
|
+
|
|
|
|
|
+/* CSS Reset & Base Styles */
|
|
|
|
|
+* {
|
|
|
|
|
+ margin: 0;
|
|
|
|
|
+ padding: 0;
|
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+body {
|
|
|
|
|
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
|
|
|
+ background-color: #121212;
|
|
|
|
|
+ color: #ffffff;
|
|
|
|
|
+ line-height: 1.6;
|
|
|
|
|
+ min-height: 100vh;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+/* Animation Keyframes */
|
|
|
|
|
+@keyframes fadeIn {
|
|
|
|
|
+ from {
|
|
|
|
|
+ opacity: 0;
|
|
|
|
|
+ transform: translateY(10px);
|
|
|
|
|
+ }
|
|
|
|
|
+ to {
|
|
|
|
|
+ opacity: 1;
|
|
|
|
|
+ transform: translateY(0);
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+/* Main Container */
|
|
|
|
|
+.subjects-container {
|
|
|
|
|
+ max-width: 1200px;
|
|
|
|
|
+ margin: 0 auto;
|
|
|
|
|
+ padding: 40px 20px;
|
|
|
|
|
+ animation: fadeIn 0.6s ease-in;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+/* Search Section */
|
|
|
|
|
+.search-section {
|
|
|
|
|
+ background: rgba(255, 255, 255, 0.02);
|
|
|
|
|
+ border: 1px solid rgba(255, 255, 255, 0.1);
|
|
|
|
|
+ border-radius: 12px;
|
|
|
|
|
+ padding: 20px;
|
|
|
|
|
+ margin-bottom: 24px;
|
|
|
|
|
+ transition: all 0.3s ease;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.search-section:hover {
|
|
|
|
|
+ background: rgba(255, 255, 255, 0.05);
|
|
|
|
|
+ border-color: rgba(255, 255, 255, 0.15);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.search-label {
|
|
|
|
|
+ display: block;
|
|
|
|
|
+ font-size: 14px;
|
|
|
|
|
+ font-weight: 500;
|
|
|
|
|
+ color: #e0e0e0;
|
|
|
|
|
+ margin-bottom: 8px;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.search-input {
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ padding: 12px 16px;
|
|
|
|
|
+ background: rgba(255, 255, 255, 0.05);
|
|
|
|
|
+ border: 1px solid rgba(255, 255, 255, 0.1);
|
|
|
|
|
+ border-radius: 8px;
|
|
|
|
|
+ color: #ffffff;
|
|
|
|
|
+ font-size: 14px;
|
|
|
|
|
+ font-family: inherit;
|
|
|
|
|
+ transition: all 0.3s ease;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.search-input:focus {
|
|
|
|
|
+ outline: none;
|
|
|
|
|
+ border-color: rgba(255, 255, 255, 0.2);
|
|
|
|
|
+ background: rgba(255, 255, 255, 0.08);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.search-input::placeholder {
|
|
|
|
|
+ color: #888;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+/* Table Section */
|
|
|
|
|
+.table-section {
|
|
|
|
|
+ background: rgba(255, 255, 255, 0.02);
|
|
|
|
|
+ border: 1px solid rgba(255, 255, 255, 0.1);
|
|
|
|
|
+ border-radius: 16px;
|
|
|
|
|
+ overflow: hidden;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.subjects-table {
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ border-collapse: collapse;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.table-header {
|
|
|
|
|
+ background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.table-header th {
|
|
|
|
|
+ padding: 16px 20px;
|
|
|
|
|
+ text-align: left;
|
|
|
|
|
+ font-size: 14px;
|
|
|
|
|
+ font-weight: 600;
|
|
|
|
|
+ color: #ffffff;
|
|
|
|
|
+ border-bottom: 2px solid #333;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.sort-button {
|
|
|
|
|
+ background: none;
|
|
|
|
|
+ border: none;
|
|
|
|
|
+ color: #e0e0e0;
|
|
|
|
|
+ cursor: pointer;
|
|
|
|
|
+ margin-left: 8px;
|
|
|
|
|
+ font-size: 16px;
|
|
|
|
|
+ transition: all 0.3s ease;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.sort-button:hover {
|
|
|
|
|
+ color: #ffffff;
|
|
|
|
|
+ transform: scale(1.1);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.table-row {
|
|
|
|
|
+ transition: all 0.3s ease;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.table-row:hover {
|
|
|
|
|
+ background: rgba(255, 255, 255, 0.05);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.table-row.even-row {
|
|
|
|
|
+ background: rgba(255, 255, 255, 0.02);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.table-row.even-row:hover {
|
|
|
|
|
+ background: rgba(255, 255, 255, 0.08);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.table-cell {
|
|
|
|
|
+ padding: 16px 20px;
|
|
|
|
|
+ font-size: 14px;
|
|
|
|
|
+ color: #e0e0e0;
|
|
|
|
|
+ border-bottom: 1px solid rgba(255, 255, 255, 0.05);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.subject-name {
|
|
|
|
|
+ font-weight: 500;
|
|
|
|
|
+ color: #ffffff;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+/* Grades Container */
|
|
|
|
|
+.grades-container {
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ flex-wrap: wrap;
|
|
|
|
|
+ gap: 8px;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.grade-badge {
|
|
|
|
|
+ display: inline-block;
|
|
|
|
|
+ background: rgba(255, 255, 255, 0.05);
|
|
|
|
|
+ border: 1px solid rgba(255, 255, 255, 0.1);
|
|
|
|
|
+ border-radius: 8px;
|
|
|
|
|
+ padding: 6px 12px;
|
|
|
|
|
+ font-family: 'Courier New', monospace;
|
|
|
|
|
+ font-size: 12px;
|
|
|
|
|
+ font-weight: 600;
|
|
|
|
|
+ color: #ffffff;
|
|
|
|
|
+ transition: all 0.3s ease;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+.grade-badge:hover {
|
|
|
|
|
+ background: rgba(255, 255, 255, 0.1);
|
|
|
|
|
+ transform: translateY(-1px);
|
|
|
|
|
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+/* Empty State */
|
|
|
|
|
+.empty-state {
|
|
|
|
|
+ text-align: center;
|
|
|
|
|
+ padding: 40px 20px;
|
|
|
|
|
+ color: #888;
|
|
|
|
|
+ font-size: 16px;
|
|
|
|
|
+ font-style: italic;
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+/* Responsive Design */
|
|
|
|
|
+@media (max-width: 768px) {
|
|
|
|
|
+ .subjects-container {
|
|
|
|
|
+ padding: 20px 15px;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .search-section {
|
|
|
|
|
+ padding: 16px;
|
|
|
|
|
+ margin-bottom: 20px;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .table-header th,
|
|
|
|
|
+ .table-cell {
|
|
|
|
|
+ padding: 12px 16px;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .subjects-table {
|
|
|
|
|
+ font-size: 12px;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .grade-badge {
|
|
|
|
|
+ font-size: 11px;
|
|
|
|
|
+ padding: 4px 8px;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .grades-container {
|
|
|
|
|
+ flex-direction: column;
|
|
|
|
|
+ align-items: flex-start;
|
|
|
|
|
+ gap: 4px;
|
|
|
|
|
+ }
|
|
|
|
|
+}
|