Skip to content

Commit 7a25bff

Browse files
authored
add widgets ig
1 parent 9737465 commit 7a25bff

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

style.css

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -446,5 +446,35 @@ body.dark-mode .code-block {
446446
color: var(--text-light);
447447
}
448448

449+
#statusWidget {
450+
background: rgba(0, 0, 0, 0.05);
451+
border-radius: 10px;
452+
padding: 1em;
453+
font-family: 'Segoe UI', sans-serif;
454+
font-size: 1em;
455+
color: var(--text-light);
456+
width: 300px;
457+
text-align: center;
458+
box-shadow: 0 0 10px rgba(0,0,0,0.05);
459+
transition: all 0.3s ease;
460+
}
461+
462+
body.dark-mode #statusWidget {
463+
background: rgba(255, 255, 255, 0.05);
464+
color: var(--text-light);
465+
}
466+
467+
#statusWidget h2 {
468+
margin-bottom: 0.5em;
469+
font-weight: 600;
470+
font-size: 1.2em;
471+
}
472+
473+
#statusText {
474+
font-size: 1.5em;
475+
font-weight: bold;
476+
margin-top: 0.5em;
477+
}
478+
449479

450480
/* Extensions go here */

0 commit comments

Comments
 (0)