Skip to content

Commit d007085

Browse files
authored
Merge pull request #4 from sethbern/favicon
fix blue and navbar on mobile
2 parents f9bf726 + 0317159 commit d007085

3 files changed

Lines changed: 35 additions & 15 deletions

File tree

assets/.DS_Store

6 KB
Binary file not shown.

index.html

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ <h2>About</h2>
5757
<p>
5858
I’m interested in making computing education more accessible and personally meaningful through
5959
Human-Computer Interaction (HCI) and AI. My interest in computing began in seventh grade when I
60-
started programming on my TI-84 calculator. As a freshman at Temple University, I began researching
60+
started programming on my TI-84 calculator. At Temple University, I began researching
6161
how to help novice students understand programming concepts.
6262
</p>
6363
<p>
@@ -68,10 +68,10 @@ <h2>About</h2>
6868
especially for students who don’t yet see themselves represented in technical spaces.
6969
</p>
7070
<p>
71-
In the fall of 2025, I’ll begin my PhD at the <b><Span class="blue"></Span>University of Michigan
72-
School of Information.
73-
Go blue!</Span></b>
71+
In the fall of 2025, I’ll begin my PhD at the <span class="blue">University of Michigan School of
72+
Information. Go blue!</span>
7473
</p>
74+
7575
</section>
7676

7777
<section id="research" class="fade-in">
@@ -188,7 +188,6 @@ <h2>Publications</h2>
188188
</div>
189189
</div>
190190
</section>
191-
192191
<!-- <section id="service" class="fade-in"> -->
193192
<!-- <h2>Service</h2>
194193
<p>

style.css

Lines changed: 31 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ body {
4242

4343
.social-links a {
4444
text-decoration: none;
45-
color: #004080;
45+
color: #00274C;
4646
margin-right: 0;
4747
font-size: 14px
4848
}
@@ -75,7 +75,7 @@ h2 {
7575
.pub-title {
7676
font-size: 16px;
7777
font-weight: 600;
78-
color: #004080;
78+
color: #00274C;
7979
text-decoration: none
8080
}
8181

@@ -122,14 +122,18 @@ h2 {
122122
.nav-content {
123123
display: flex;
124124
justify-content: center;
125-
gap: 24px;
126-
flex-wrap: wrap;
127-
padding: 10px 20px;
128-
font-size: 15px;
125+
gap: 16px;
126+
flex-wrap: nowrap;
127+
overflow-x: auto;
128+
padding: 10px;
129+
white-space: nowrap;
130+
-webkit-overflow-scrolling: touch;
129131
}
130132

133+
134+
131135
.navbar a {
132-
color: #004080;
136+
color: #00274C;
133137
font-weight: 500;
134138
text-decoration: none;
135139
position: relative;
@@ -144,7 +148,7 @@ h2 {
144148
left: 0;
145149
height: 2px;
146150
width: 0;
147-
background-color: #004080;
151+
background-color: #00274C;
148152
transition: width 0.2s ease;
149153
}
150154

@@ -227,9 +231,9 @@ body {
227231
text-align: center;
228232
font-size: 13px;
229233
color: #666;
230-
margin-top: 60px;
234+
/* margin-top: 60px;
231235
padding-top: 30px;
232-
border-top: 1px solid #ddd
236+
border-top: 1px solid #ddd */
233237
}
234238

235239
a {
@@ -242,4 +246,21 @@ header.site-header {
242246

243247
.blue {
244248
color: #00274C;
249+
font-weight: bold;
250+
}
251+
252+
h1 {
253+
color: #00274C;
254+
}
255+
256+
h2 {
257+
color: #00274C;
258+
}
259+
260+
h3 {
261+
color: #00274C;
262+
}
263+
264+
strong {
265+
color: #00274C;
245266
}

0 commit comments

Comments
 (0)