Spaces:
Running
Running
Upload style.css
Browse files
style.css
CHANGED
|
@@ -1093,6 +1093,53 @@ body {
|
|
| 1093 |
font-size: 0.95rem;
|
| 1094 |
}
|
| 1095 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1096 |
/* ========== SLIDE 9: My Pick ========== */
|
| 1097 |
.my-pick-container {
|
| 1098 |
display: flex;
|
|
|
|
| 1093 |
font-size: 0.95rem;
|
| 1094 |
}
|
| 1095 |
|
| 1096 |
+
/* Editor Comparison Table */
|
| 1097 |
+
.editor-comparison {
|
| 1098 |
+
margin-top: 1.5rem;
|
| 1099 |
+
background: var(--bg-card);
|
| 1100 |
+
border: 1px solid var(--border-color);
|
| 1101 |
+
border-radius: 12px;
|
| 1102 |
+
padding: 15px;
|
| 1103 |
+
}
|
| 1104 |
+
|
| 1105 |
+
.editor-table-container {
|
| 1106 |
+
overflow-x: auto;
|
| 1107 |
+
}
|
| 1108 |
+
|
| 1109 |
+
.editor-table {
|
| 1110 |
+
width: 100%;
|
| 1111 |
+
border-collapse: collapse;
|
| 1112 |
+
font-size: 0.8rem;
|
| 1113 |
+
}
|
| 1114 |
+
|
| 1115 |
+
.editor-table th,
|
| 1116 |
+
.editor-table td {
|
| 1117 |
+
padding: 8px 12px;
|
| 1118 |
+
text-align: left;
|
| 1119 |
+
border-bottom: 1px solid var(--border-color);
|
| 1120 |
+
}
|
| 1121 |
+
|
| 1122 |
+
.editor-table th {
|
| 1123 |
+
background: rgba(99, 102, 241, 0.1);
|
| 1124 |
+
font-weight: 600;
|
| 1125 |
+
color: var(--accent-primary);
|
| 1126 |
+
font-size: 0.75rem;
|
| 1127 |
+
text-transform: uppercase;
|
| 1128 |
+
letter-spacing: 0.05em;
|
| 1129 |
+
}
|
| 1130 |
+
|
| 1131 |
+
.editor-table td {
|
| 1132 |
+
color: var(--text-secondary);
|
| 1133 |
+
}
|
| 1134 |
+
|
| 1135 |
+
.editor-table tr:hover td {
|
| 1136 |
+
background: var(--bg-card-hover);
|
| 1137 |
+
}
|
| 1138 |
+
|
| 1139 |
+
.editor-table tr:last-child td {
|
| 1140 |
+
border-bottom: none;
|
| 1141 |
+
}
|
| 1142 |
+
|
| 1143 |
/* ========== SLIDE 9: My Pick ========== */
|
| 1144 |
.my-pick-container {
|
| 1145 |
display: flex;
|