Skip to content

Commit dc7772c

Browse files
committed
[feat] Add text justification & Font Awesome social icons
1 parent dcc78dc commit dc7772c

4 files changed

Lines changed: 88 additions & 2 deletions

File tree

_config.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,22 @@ title: Craig T. Russell, PhD
22
theme: minima
33
markdown: kramdown
44

5+
# Minima settings
6+
minima:
7+
skin: auto # Automatically switches between light and dark mode
8+
9+
# Build settings
10+
plugins:
11+
- jekyll-feed
12+
- jekyll-seo-tag
13+
14+
# Site metadata
15+
author:
16+
name: Craig T. Russell, PhD
17+
email: craig.russell.phd@gmail.com
18+
19+
description: >
20+
Machine Learning Scientist specialising in virtual cell development
21+
for drug discovery, with expertise in multi-modal foundation models
22+
and biological AI applications.
23+

assets/css/style.scss

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
---
2+
---
3+
4+
@import "{{ site.theme }}";
5+
6+
/* Custom styles for text justification */
7+
.post-content p,
8+
.page-content p,
9+
article p {
10+
text-align: justify;
11+
text-justify: inter-word;
12+
}
13+
14+
/* Keep lists left-aligned */
15+
.post-content ul,
16+
.post-content ol,
17+
.page-content ul,
18+
.page-content ol {
19+
text-align: left;
20+
}
21+
22+
/* Optional: Add some spacing for better readability */
23+
.post-content p,
24+
.page-content p {
25+
margin-bottom: 1.2em;
26+
}
27+
28+
/* Social links styling */
29+
.social-links {
30+
display: flex;
31+
flex-wrap: wrap;
32+
gap: 1.5rem;
33+
margin: 1rem 0 2rem 0;
34+
font-size: 0.95rem;
35+
}
36+
37+
.social-links a {
38+
text-decoration: none;
39+
color: #333;
40+
transition: color 0.3s ease;
41+
}
42+
43+
.social-links a:hover {
44+
color: #0366d6;
45+
}
46+
47+
.social-links i {
48+
margin-right: 0.4rem;
49+
font-size: 1.1em;
50+
}
51+
52+
/* Dark mode support if using Minima's dark skin */
53+
@media (prefers-color-scheme: dark) {
54+
.social-links a {
55+
color: #ddd;
56+
}
57+
58+
.social-links a:hover {
59+
color: #58a6ff;
60+
}
61+
}

cv.txt

Whitespace-only changes.

index.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,18 @@ layout: default
55

66
## Virtual Cell & Drug Discovery
77

8-
📧 [craig.russell.phd@gmail.com](mailto:craig.russell.phd@gmail.com)
9-
🔗 [GitHub](https://github.com/ctr26) | [LinkedIn](https://linkedin.com/in/ctr26) | [Google Scholar](https://scholar.google.com/citations?user=YOUR_ID)
8+
<div class="social-links">
9+
<a href="mailto:craig.russell.phd@gmail.com" title="Email"><i class="fa fa-envelope"></i> craig.russell.phd@gmail.com</a>
10+
<a href="https://github.com/ctr26" title="GitHub Profile"><i class="fa fa-github"></i> GitHub</a>
11+
<a href="https://linkedin.com/in/ctr26" title="LinkedIn Profile"><i class="fa fa-linkedin"></i> LinkedIn</a>
12+
<a href="https://scholar.google.com/citations?user=YOUR_ID" title="Google Scholar Profile"><i class="fa fa-graduation-cap"></i> Google Scholar</a>
13+
</div>
1014

1115
## Personal Statement
1216

17+
<p style="text-align: justify;">
1318
Machine Learning Scientist specialising in virtual cell development for drug discovery. Strong background in building multi-modal foundation models that integrate epigenomic, transcriptomic, and phenotypic data. Experienced in applying AI to biological problems across scales, from molecular interactions to whole-organism imaging, with a focus on practical applications in precision medicine.
19+
</p>
1420

1521
## Employment History
1622

0 commit comments

Comments
 (0)