diff --git a/_layouts/base.html b/_layouts/base.html index 21c3e10..84fef4b 100644 --- a/_layouts/base.html +++ b/_layouts/base.html @@ -7,6 +7,7 @@ {% else %}
- I'm a software developer and Wikipedian currently studying computer science at the University of Illinois at Urbana–Champaign. My work mostly focuses on text parsing and analysis; I'm also interested in programming language theory and algorithm design. - |
-
-
|
+
+ GitHub | +Freenode IRC | +Wikipedia | +PGP Key | +||||||||||||||||
earwig | +Earwig | +The Earwig | +@the_earwig | +benkurtovic | +E8DBB515 |
Projects@@ -134,7 +116,7 @@ title: Home |
- + |
Posts
Tags:
diff --git a/static/favicon.png b/static/favicon.png
new file mode 100644
index 0000000..bf6579b
Binary files /dev/null and b/static/favicon.png differ
diff --git a/static/main.css b/static/main.css
index 0d6311b..96de281 100644
--- a/static/main.css
+++ b/static/main.css
@@ -77,6 +77,38 @@ a.underlined:hover, a.underlined:active { text-decoration: none; }
line-height: 1.75em;
}
+#links {
+ width: 100%;
+ text-align: center;
+ border-spacing: 0;
+}
+
+#links td {
+ width: 16.666666666667%;
+}
+
+#links td:not(:first-child) {
+ border-left: 1px solid #CCC;
+}
+
+#work {
+ width: 100%;
+ border-spacing: 0;
+}
+
+#work td {
+ width: 50%;
+ vertical-align: top;
+}
+
+#work td:not(:first-child) {
+ padding-left: 0.5em;
+}
+
+#work td:not(:last-child) {
+ padding-right: 0.5em;
+}
+
.project {
margin-bottom: 1.25em;
}
|