Skip to content

Commit 0ade181

Browse files
committed
feat:Behavioural Interview Prep page with structured content and UI
1 parent 18fc80e commit 0ade181

File tree

5 files changed

+788
-305
lines changed

5 files changed

+788
-305
lines changed

src/css/custom.css

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1223,3 +1223,77 @@ html {
12231223
}
12241224
}
12251225

1226+
/* STAR section border fixes for dark mode */
1227+
[data-theme='dark'] .star-border-red {
1228+
border-color: #ef4444 !important;
1229+
}
1230+
1231+
[data-theme='dark'] .star-border-yellow {
1232+
border-color: #eab308 !important;
1233+
}
1234+
1235+
[data-theme='dark'] .star-border-green {
1236+
border-color: #22c55e !important;
1237+
}
1238+
1239+
[data-theme='dark'] .star-border-blue {
1240+
border-color: #3b82f6 !important;
1241+
}
1242+
1243+
[data-theme='light'] .interview-prep-page h1,
1244+
[data-theme='light'] .interview-prep-page h2,
1245+
[data-theme='light'] .interview-prep-page h3,
1246+
[data-theme='light'] .interview-prep-page h4,
1247+
[data-theme='light'] .interview-prep-page h5,
1248+
[data-theme='light'] .interview-prep-page h6 {
1249+
color: #ffffff !important;
1250+
}
1251+
1252+
.watch-video-btn {
1253+
background-color: #dc2626;
1254+
color: #ffffff;
1255+
padding: 0.5rem 1rem;
1256+
border-radius: 0.5rem;
1257+
font-size: 0.875rem;
1258+
font-weight: 500;
1259+
display: inline-flex;
1260+
align-items: center;
1261+
transition: background-color 0.2s ease-in-out;
1262+
}
1263+
1264+
.watch-video-btn:hover {
1265+
background-color: #b91c1c;
1266+
}
1267+
1268+
[data-theme='dark'] .interview-prep-sidebar:hover {
1269+
border-color: #3b82f6 !important;
1270+
}
1271+
1272+
[data-theme='dark'] .interview-prep-sidebar {
1273+
border-color:#4b5563 !important;
1274+
}
1275+
1276+
/* Active tab in dark mode */
1277+
[data-theme='dark'] .interview-prep-nav-tab-active {
1278+
border-bottom-color: #60a5fa !important;
1279+
color: #60a5fa !important;
1280+
}
1281+
1282+
/* Inactive tab in dark mode */
1283+
[data-theme='dark'] .interview-prep-nav-tab-inactive {
1284+
border-bottom-color: transparent !important;
1285+
color: #9ca3af !important;
1286+
}
1287+
1288+
[data-theme='dark'] .interview-prep-nav-tab-inactive:hover {
1289+
color: #d1d5db !important;
1290+
}
1291+
1292+
.interview-prep-discord-btn{
1293+
color:white;
1294+
1295+
}
1296+
1297+
[data-theme='dark'].interview-prep-join-comm{
1298+
border-color:#854D0E
1299+
}

0 commit comments

Comments
 (0)