diff options
Diffstat (limited to 'public')
-rw-r--r-- | public/index.html | 44 | ||||
-rw-r--r-- | public/style.css | 33 |
2 files changed, 44 insertions, 33 deletions
diff --git a/public/index.html b/public/index.html index 6652c7d..97f3cfe 100644 --- a/public/index.html +++ b/public/index.html @@ -2,22 +2,42 @@ <html> <head> <meta charset="utf-8"> - <meta name="generator" content="GitLab Pages"> - <title>Plain HTML site using GitLab Pages</title> + <title>blaise.zone</title> <link rel="stylesheet" href="style.css"> </head> <body> - <div class="navbar"> - <a href="https://pages.gitlab.io/plain-html/">Plain HTML Example</a> - <a href="https://gitlab.com/pages/plain-html/">Repository</a> - <a href="https://gitlab.com/pages/">Other Examples</a> - </div> + <h1>blaise.zone</h1> - <h1>Hello World!</h1> + Welcome to Blaise Thompson's personal website! <br> + + This page simply links to all of my public profiles & projects. <br> + + Thanks for stopping by! —Blaise (<a href="http://pronoun.is/he">pronoun.is/he</a>) + + <h2>professional</h2> + <a href="https://cv.blaise.zone">CV</a><br> + <a href="https://www.linkedin.com/in/untzag/">LinkedIn</a><br> + <a href="https://orcid.org/0000-0002-3845-824X">ORCID</a><br> + <a href="https://scholar.google.com/citations?user=mvbHkywAAAAJ&hl=en">Google Scholar</a><br> + + <h2>personal</h2> + <a href="https://mastodon.social/@untzag">Mastodon</a><br> + <a href="https://steamcommunity.com/id/saible/">Steam</a><br> + + <h2>development</h2> + <a href="https://github.com/untzag">GitHub</a><br> + <a href="https://gitlab.com/untzag">GitLab</a><br> + <a href="https://pypi.org/user/untzag/">PyPI</a><br> + <a href="https://readthedocs.org/profiles/untzag/">Read the Docs</a><br> + <a href="https://stackexchange.com/users/3410439/untzag">Stack Exchange</a><br> + + <h2>projects</h2> + <a href="http://wright.tools">WrightTools</a><br> + <a href="https://wright.chem.wisc.edu">Wright Group</a><br> + <a href="https://github.com/wright-group/yaq">yaq</a><br> + <a href="https://github.com/untzag/tidy_headers">tidy_headers</a><br> + <a href="https://github.com/untzag/gitsieve">gitsieve</a><br> + <a href="https://github.com/wright-group/wrightsim">WrightSim</a><br> - <p> - This is a simple plain-HTML website on GitLab Pages, without any fancy static site generator. - </p> </body> </html> - diff --git a/public/style.css b/public/style.css index 3eae408..b9970fe 100644 --- a/public/style.css +++ b/public/style.css @@ -1,24 +1,15 @@ -body { - font-family: sans-serif; - margin: auto; - max-width: 1280px; +a { + text-decoration : none } -.navbar { - background-color: #313236; - border-radius: 2px; - max-width: 800px; -} - -.navbar a { - color: #aaa; - display: inline-block; - font-size: 15px; - padding: 10px; - text-decoration: none; -} - -.navbar a:hover { - color: #ffffff; +body { + font-family: sans-serif; + margin: 40px auto; + max-width: 650px; + line-height:1.6; + font-size:16px; + backgroud-color:#ffffff; + color:#454545; + padding:0 10px; + text-align:left; } - |