diff --git a/index.html b/index.html index 0412da6..1aa6fbb 100644 --- a/index.html +++ b/index.html @@ -82,24 +82,14 @@ projects: ---

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, but I'm also interested in programming language theory and algorithm design. Want to chat? Contact me at ben.kurtovic@gmail.com.

- - - - - - - - - - - - - - - - - - +
diff --git a/static/main.css b/static/main.css index 11d920b..784d88b 100644 --- a/static/main.css +++ b/static/main.css @@ -61,17 +61,35 @@ p#bio { } #links { - width: 100%; text-align: center; - border-spacing: 0; } -#links td { - width: 16.666666666667%; +#links div { + display: inline-block; } -#links td:not(:first-child) { - border-left: 1px solid #CCC; +@media (min-width: 800px) { + #links div { + width: 16%; + } + + #links div:not(:first-child) { + border-left: 1px solid #CCC; + } +} + +@media (max-width: 799px) { + #links div { + width: 32%; + } + + #links div:nth-child(-n+3) { + margin-bottom: 1em; + } + + #links div:not(:nth-child(3n+1)) { + border-left: 1px solid #CCC; + } } #work {