-
- {{ content }}
-
- {% if page.profile %}
-
- {% if page.profile.image %}
-
- {% endif %}
- {% if page.profile.address %}
-
diff --git a/_pages/about.md b/_pages/about.md
index c36dd69..3ea7593 100644
--- a/_pages/about.md
+++ b/_pages/about.md
@@ -12,8 +12,9 @@ profile:
- {{ page.profile.address }}
-
- {% endif %}
+ {% if page.profile %}
+
+ {% if page.profile.image %}
+
+ {% endif %}
+ {% if page.profile.address %}
+
+ {% endif %}
+
+
+ {{ page.profile.address }}
- {% endif %}
+ {% endif %}
+
+ {{ content }}
{% if page.news %}
{% include news.html %}
{% endif %}
+ {% if page.selected_papers %}
+ {% include selected_papers.html %}
+ {% endif %}
+
{% if page.social %}
123 your address street
Your City, State 12345
-news: true -social: true +news: true # includes a list of news items +selected_papers: true # includes a list of papers marked as "selected={true}" +social: true # includes social icons at the bottom of the page --- Write your biography here. Tell the world about yourself. Link to your favorite [subreddit](http://reddit.com){:target="\_blank"}. You can put a picture in, too. The code is already in, just name your picture `prof_pic.jpg` and put it in the `img/` folder. diff --git a/_sass/_base.scss b/_sass/_base.scss index 1a601cd..bfdfe82 100644 --- a/_sass/_base.scss +++ b/_sass/_base.scss @@ -35,13 +35,40 @@ a, table.table a { // Profile .profile { - .address { - font-family: monospace; - font-size: 1.2rem; - p { - margin: 0; - } + margin-left: 1rem; + width: 100%; + + .address { + margin-bottom: 5px; + margin-top: 5px; + font-family: monospace; + font-size: 1.2rem; + p { + display: inline-block; + margin: 0; } + } +} + +@media (min-width: 576px) { + .profile { + width: 30%; + .address { + p { display: block; } + } + } +} + +.post-description { + margin-bottom: 2rem; + a { + color: inherit; + font-size: 0.875rem; + &:hover { + color: $theme-color; + text-decoration: none; + } + } } @@ -251,6 +278,19 @@ footer.sticky-bottom { .publications { margin-top: 2rem; + h1 { + color: $theme-color; + font-size: 2rem; + text-align: center; + margin-top: 1em; + margin-bottom: 1em; + } + h2 { + margin-bottom: 1rem; + span { + font-size: 1.5rem; + } + } h2.year { color: $grey-color-light; border-top: 1px solid $grey-color-light; @@ -274,10 +314,17 @@ footer.sticky-bottom { background-color: $theme-color; padding-left: 1rem; padding-right: 1rem; + a { + color: white; + &:hover { + text-decoration: none; + } + } + } + .award { + color: $theme-color !important; + border: 1px solid $theme-color; } - } - span { - display: block; } .title { font-weight: bolder; @@ -295,13 +342,19 @@ footer.sticky-bottom { font-style: normal; } } - em.star { - border-bottom: none; - color: $theme-color; - font-style: normal; - } - a.abstract, a.bibtex { - cursor: pointer; + .links { + a.btn { + color: $text-color; + border: 1px solid $text-color; + padding-left: 1rem; + padding-right: 1rem; + padding-top: 0.25rem; + padding-bottom: 0.25rem; + &:hover { + color: $theme-color; + border-color: $theme-color; + } + } } .hidden { font-size: 0.875rem; @@ -332,10 +385,10 @@ footer.sticky-bottom { -o-transition: 0.15s ease; transition: all 0.15s ease; } - span.abstract.hidden { + div.abstract.hidden { border: dashed 1px white; } - span.abstract.hidden.open { + div.abstract.hidden.open { border-color: $grey-color; } }