Skip to content

Commit 6711bce

Browse files
committed
Updated projects.css
1 parent 783481d commit 6711bce

2 files changed

Lines changed: 26 additions & 4 deletions

File tree

css/blog.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,10 @@
9797
text-decoration: none;
9898
}
9999

100+
.dark-mode .post-title {
101+
color: #88bbff
102+
}
103+
100104
.post-title:hover {
101105
text-decoration: underline;
102106
}

css/projects.css

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444

4545
.project-card-description {
4646
font-size: 1rem;
47-
color: #666;
47+
color: #666666;
4848
line-height: 1.5;
4949
}
5050

@@ -76,15 +76,19 @@
7676

7777
/* Project Info */
7878
.project-info {
79-
max-width: 200px;
79+
max-width: 500px;
8080
}
8181

8282
.project-description {
8383
font-size: 0.9rem;
84-
color: #555;
84+
color: #555555;
8585
margin: 0.25rem 0;
8686
}
8787

88+
.dark-mode .project-description {
89+
color: #dddddd;
90+
}
91+
8892
/* Tech Stack Column */
8993
.languages {
9094
margin-left: auto;
@@ -101,6 +105,10 @@
101105
margin-bottom: 0.3rem;
102106
}
103107

108+
.dark-mode .languages-label {
109+
color: #eeeeee;
110+
}
111+
104112
/* Linguist Wrapper */
105113
.linguist-wrapper {
106114
margin-left: auto;
@@ -117,7 +125,13 @@
117125
height: 8px;
118126
margin-bottom: 0.5rem;
119127
border-radius: 4px;
120-
background-color: #ddd;
128+
background-color: #f9f9f9;
129+
overflow: hidden;
130+
font-size: 0;
131+
}
132+
133+
.dark-mode .linguist-bar {
134+
background-color: #0e0e0e;
121135
overflow: hidden;
122136
font-size: 0;
123137
}
@@ -141,3 +155,7 @@
141155
color: #555;
142156
margin-bottom: 0.2rem;
143157
}
158+
159+
.dark-mode .linguist-langs div {
160+
color: #dddddd;
161+
}

0 commit comments

Comments
 (0)