123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762 |
- /*************************************************
- * Hugo Academic: an academic theme for Hugo.
- * Designed by @GeorgeCushen.
- * https://github.com/gcushen/hugo-academic
- **************************************************/
- /*************************************************
- * Core
- **************************************************/
- *,
- *::after,
- *::before {
- box-sizing: border-box;
- }
- .row:after,
- .row:before {
- content: " ";
- display: table;
- }
- html {
- font-family: 'Merriweather', serif;
- font-size: 16px;
- color: rgba(0,0,0,0.8);
- line-height: 1.65;
- }
- @media screen and (min-width: 58rem) {
- html {
- font-size: 20px;
- }
- }
- body {
- font-family: inherit;
- font-size: 1rem;
- line-height: inherit;
- color: inherit;
- margin-top: 71px; /* Offset body content by navbar height. */
- padding-top: 0;
- counter-reset: captions;
- }
- @media screen and (max-width: 1200px) { /* Match max-width of .nav-bar query. */
- body {
- margin-top: 51px; /* Offset body content by navbar height. */
- }
- }
- /* Body text */
- p {
- margin-top: 0;
- margin-bottom: 1rem;
- }
- /* Lists */
- ul, ol, dl {
- margin-top: 0;
- margin-bottom: 1rem;
- }
- /* Navigation bar text */
- .navbar-default {
- font-family: 'Lato', sans-serif;
- font-weight: 400;
- line-height: 1.25;
- text-rendering: optimizeLegibility;
- }
- /* Headings */
- h1, h2, h3, h4, h5, h6 {
- font-family: 'Lato', sans-serif;
- font-weight: 400;
- margin-bottom: .5rem;
- line-height: 1.25;
- color: #313131;
- text-rendering: optimizeLegibility;
- }
- h1 {
- font-size: 2.25rem;
- }
- h2 {
- margin-top: 1rem;
- font-size: 1.5rem;
- }
- h3 {
- font-weight: 700;
- margin-top: 1.5rem;
- font-size: 1.25rem;
- }
- h4, h5, h6 {
- font-weight: 700;
- margin-top: 1rem;
- font-size: 1rem;
- }
- a,
- h3.article-title a:hover {
- color: #0095eb;
- text-decoration: none;
- transition: color 0.6s ease;
- }
- a:hover,
- a:focus {
- color: #005181;
- }
- img,
- video {
- height: auto;
- max-width: 100%;
- display: block;
- }
- figcaption:before {
- font-weight: 700;
- text-transform: uppercase;
- content: "Figure " counter(captions) ": ";
- }
- figcaption {
- display: block;
- margin-top: 0.75em;
- line-height: 1.25;
- font-size: 1rem;
- margin-bottom: 1.65rem;
- font-family: 'Lato', sans-serif;
- counter-increment: captions;
- }
- figcaption h4 {
- display: inline-block;
- font-size: 1rem;
- font-weight: 400;
- margin: 0;
- }
- pre,
- code {
- font-family: 'Roboto Mono', 'Courier New', 'Courier', monospace;
- }
- pre {
- margin: 0 0 1rem 0;
- overflow: auto;
- }
- /* Quotes */
- blockquote {
- padding: .5rem 1rem;
- margin: .8rem 0;
- color: #7a7a7a;
- border-left: .25rem solid #e5e5e5;
- }
- blockquote p:last-child {
- margin-bottom: 0;
- }
- @media (min-width: 30em) {
- blockquote {
- padding-right: 5rem;
- padding-left: 1.25rem;
- }
- }
- .space-below {
- margin-bottom: 50px;
- }
- @media screen and (max-width: 768px) {
- .space-below {
- margin-bottom: 10px;
- }
- }
- /*************************************************
- * Home Sections
- **************************************************/
- .home-section {
- background-color: rgb(255, 255, 255);
- padding: 110px 0 110px 0;
- }
- @media screen and (max-width: 768px) {
- .home-section {
- padding: 60px 0 60px 0;
- }
- }
- .home-section:first-of-type {
- padding-top: 0;
- }
- .home-section:nth-of-type(even) {
- background-color: rgb(247, 247, 247);
- }
- .section-heading h1 {
- margin: 0 0 10px 0;
- }
- .section-heading p {
- font-family: 'Lato', sans-serif;
- font-weight: 400;
- font-size: 1.1rem;
- color: #b2b2b2;
- }
- /*************************************************
- * Biography
- **************************************************/
- #profile {
- text-align: center;
- padding: 30px 10px;
- position: relative;
- }
- #profile .portrait {
- background-image: url('../img/portrait.jpg');
- width: 200px;
- height: 200px;
- margin: 0 auto;
- border-radius: 50%;
- background-size: cover;
- -webkit-background-size: cover;
- -moz-background-size: cover;
- }
- #profile .portrait-title h2 {
- font-size: 1.75em;
- font-weight: 300;
- color: #000000;
- margin: 20px 0 10px 0;
- }
- #profile .portrait-title h3 {
- font-size: 1.13em;
- font-weight: 300;
- color: #AAAAAA;
- margin: 0px 0 10px 0;
- }
- #profile ul.social-icon {
- display: inline-flex;
- flex-direction: row;
- flex-wrap: wrap;
- list-style: none;
- padding: 0;
- margin-top: 30px;
- }
- #profile .social-icon li {
- margin-right: 10px;
- }
- #profile .social-icon li:last-of-type {
- margin-right: 0;
- }
- #profile .social-icon li:hover {
- transform: scale(1.2)
- }
- .big-icon {
- font-size: 2rem;
- }
- ul.ul-interests li {
- font-size: 0.9rem;
- }
- ul.ul-edu {
- list-style: none;
- }
- ul.ul-edu li {
- position: relative;
- padding: 0px 15px 4px 3px;
- }
- ul.ul-edu li .description p {
- margin: 0;
- }
- ul.ul-edu li .description p.course {
- font-size: 0.9rem;
- }
- ul.ul-edu li .description p.institution {
- font-size: 0.75rem;
- color: rgba(0,0,0,0.6);
- }
- /*************************************************
- * Sharing
- **************************************************/
- .share-box {
- float: right;
- }
- ul.share {
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- list-style: none;
- margin: 0;
- padding: 0;
- }
- ul.share li {
- display: inline-flex;
- margin-right: 5px;
- }
- ul.share li:last-of-type {
- margin-right: 0;
- }
- ul.share li .fa {
- display: block;
- width: 30px;
- height: 30px;
- line-height: 30px;
- font-size: 16px;
- text-align: center;
- transition: all 150ms ease-in-out;
- color: #fff;
- }
- ul.share li a {
- background-color: #b5c6ce;
- display: block;
- border-radius: 50%;
- text-decoration: none !important;
- margin: 0;
- }
- ul.share li:hover .fa {
- transform: scale(1.4)
- }
- /*************************************************
- * Blog Articles
- **************************************************/
- .article-title {
- font-size: 1.75rem;
- }
- .article-title a {
- color: #151515;
- transition: color 0.6s ease;
- }
- .article-metadata {
- margin-bottom: 20px;
- line-height: 30px; /* Match share bar line height. */
- font-size: 14px;
- letter-spacing: 0.03em;
- color: #888;
- }
- .article-metadata a {
- color: #888;
- }
- .article-metadata a:hover {
- color: #0095eb;
- }
- .article-list-item {
- margin-bottom: 40px;
- }
- .article-list-item:last-child {
- margin-bottom: 0 !important;
- }
- .article-list-item .article-metadata {
- margin-bottom: 5px;
- }
- .article-metadata .article-date,
- .article-metadata .article-tags {
- margin-right: 10px;
- }
- .article-banner {
- width: 100%;
- height: auto;
- }
- .article-style img,
- .article-style video {
- box-shadow: 1px 1px 0px #edefed, -1px -1px 0px #edefed, 1px -1px 0px #edefed, -1px 1px 0px #edefed;
- margin-left: auto;
- margin-right: auto;
- margin-top: 60px;
- margin-bottom: 60px;
- padding-left: 0;
- padding-right: 0;
- }
- .article-style figure {
- margin-top: 60px;
- margin-bottom: 60px;
- }
- .article-style figure img {
- margin-top: 0;
- margin-bottom: 0;
- }
- #comments {
- padding: 20px;
- }
- /*************************************************
- * Publications
- **************************************************/
- .pub-icon {
- color: #03396c;
- font-size: 0.81em;
- padding-top: 6px;
- }
- .pub-banner {
- max-width: 100%;
- height: auto;
- margin-left: auto;
- margin-right: auto;
- }
- .pub .pub-title {
- margin-bottom: 5px;
- }
- .pub .pub-authors {
- font-style: italic;
- line-height: 30px; /* Match share bar line height. */
- }
- .pub .pub-row-heading {
- font-weight: bold;
- }
- .pub-list-item {
- margin-bottom: 40px;
- }
- .pub-list-item .pub-abstract {
- font-size: 1rem;
- }
- .pub-list-item .pub-authors {
- line-height: normal;
- font-style: normal;
- font-size: 1rem;
- color: #3170A5;
- }
- .pub-list-item .pub-publication {
- color: #090;
- font-size: 1rem;
- }
- .pub-list-item .pub-links {
- padding-top: 10px;
- }
- /*************************************************
- * Projects
- **************************************************/
- #projects.home-section li {
- margin-bottom: 1rem;
- }
- #projects.home-section li:last-of-type {
- margin-bottom: 0;
- }
- #projects.home-section .project-title {
- display: inline-block;
- margin-bottom: 6px;
- }
- #projects.home-section .project-summary {
- font-size: 0.9rem;
- margin-bottom: 0.4rem;
- }
- #projects.home-section .project-tags {
- font-size: 0.75rem;
- color: #9c9c9c;
- }
- /*************************************************
- * Contact
- **************************************************/
- #contact.home-section .fa-ul {
- margin-left: 3.14285714rem; /* Must be > `fa-2x` icon size. */
- }
- #contact.home-section .fa-li {
- position: absolute;
- left: -3.14285714rem; /* Negative of `#contact.home-section .fa-ul` margin. */
- width: 2rem; /* Match `fa-2x` icon size. */
- top: 0.14285714em; /* Default FA value. */
- text-align: center;
- }
- #contact.home-section li {
- padding-top: 0.8rem; /* Align text with bottom of `fa-2x` icon. */
- margin-bottom: 0.3rem;
- }
- #contact.home-section li:last-of-type {
- margin-bottom: 0;
- }
- /*************************************************
- * Footer
- **************************************************/
- footer {
- margin: 4rem 0 0;
- padding: 2rem 0;
- width: 100%;
- }
- footer p {
- font-size: 0.75rem;
- text-align: center;
- }
- .site-footer,
- footer a#back_to_top i {
- color: #899596;
- }
- /*************************************************
- * Button Primary: Color Override
- **************************************************/
- .btn-primary {
- border-color: #0095eb;
- }
- .btn-primary:hover,
- .btn-primary:focus,
- .btn-primary:active,
- .btn-primary.active,
- .open > .dropdown-toggle.btn-primary {
- background: #0095eb;
- }
- /*************************************************
- * Button Outlines
- **************************************************/
- .btn-outline {
- background-color: transparent;
- color: inherit;
- transition: all .5s;
- }
- .btn-primary.btn-outline {
- color: #0095eb;
- border-color: #0095eb;
- }
- .btn-success.btn-outline {
- color: #5cb85c;
- }
- .btn-info.btn-outline {
- color: #5bc0de;
- }
- .btn-warning.btn-outline {
- color: #f0ad4e;
- }
- .btn-danger.btn-outline {
- color: #d9534f;
- }
- .btn-primary.btn-outline:hover,
- .btn-success.btn-outline:hover,
- .btn-info.btn-outline:hover,
- .btn-warning.btn-outline:hover,
- .btn-danger.btn-outline:hover {
- color: #fff;
- }
- /*************************************************
- * Navigation Bar
- **************************************************/
- .navbar {
- min-height: 70px !important;
- }
- .navbar-default {
- background: #fff;
- -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
- }
- nav#navbar-main li {
- font-size: 16px;
- }
- .navbar-default .navbar-nav li a,
- .navbar-default .navbar-nav li a:visited {
- white-space: nowrap;
- -webkit-transition: 0.2s ease;
- transition: 0.2s ease;
- color: #565a5f;
- }
- .navbar-default .navbar-nav li a:hover {
- color: #0095eb;
- }
- .navbar-brand,
- .navbar-nav li a {
- height: inherit;
- line-height: 50px;
- padding-top: 10px;
- padding-bottom: 10px;
- }
- .navbar-default .navbar-brand {
- text-transform: uppercase;
- font-weight: bold;
- font-size: 1.2em;
- color: #2b2b2b;
- }
- @media screen and (max-width: 1200px) {
- .navbar {
- min-height: 50px !important;
- }
- .navbar-brand,
- .navbar-nav li a {
- height: inherit;
- line-height: 40px;
- padding-top: 5px;
- padding-bottom: 5px;
- }
- .navbar-header {
- float: none;
- min-height: inherit;
- }
- .navbar-left,
- .navbar-right {
- float: none !important;
- }
- .navbar-toggle {
- display: block;
- }
- .navbar-collapse {
- background-color: rgba(0,0,0,0.1);
- border-radius: 5px;
- margin-bottom: 5px;
- }
- .navbar-fixed-top {
- top: 0;
- border-width: 0 0 1px;
- }
- .navbar-collapse.collapse {
- display: none !important;
- }
- .navbar-nav {
- float: none !important;
- margin-top: 7.5px;
- }
- .navbar-nav > li {
- float: none;
- }
- .navbar-nav > li > a {
- padding-top: 10px;
- padding-bottom: 10px;
- line-height: normal;
- }
- .collapse.in {
- display: block !important;
- }
- }
- /*************************************************
- * Tables
- **************************************************/
- table {
- width: 100%;
- max-width: 100%;
- margin-bottom: 1rem;
- font-size: 0.93rem;
- }
- table > thead > tr > th,
- table > tbody > tr > th,
- table > tfoot > tr > th,
- table > thead > tr > td,
- table > tbody > tr > td,
- table > tfoot > tr > td {
- padding: 8px;
- line-height: 1.43;
- vertical-align: top;
- border-top: 1px solid #ddd;
- }
- table > thead > tr > th {
- vertical-align: bottom;
- border-bottom: 2px solid #ddd;
- }
- table > caption + thead > tr:first-child > th,
- table > colgroup + thead > tr:first-child > th,
- table > thead:first-child > tr:first-child > th,
- table > caption + thead > tr:first-child > td,
- table > colgroup + thead > tr:first-child > td,
- table > thead:first-child > tr:first-child > td {
- border-top: 0;
- }
- table > tbody + tbody {
- border-top: 2px solid #ddd;
- }
- table table {
- background-color: #fff;
- }
- /* Table Striped */
- table > tbody > tr:nth-child(odd) > td,
- table > tbody > tr:nth-child(odd) > th {
- background-color: #f9f9f9;
- }
- /* Table Hover */
- table > tbody > tr:hover > td,
- table > tbody > tr:hover > th {
- background-color: #e5e5e5;
- }
|