312 lines
6.1 KiB
CSS
312 lines
6.1 KiB
CSS
@font-face {
|
|
font-family: "Lora";
|
|
src: url("/static/fonts/Lora-Regular.otf");
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
@font-face {
|
|
font-family: "Lora";
|
|
src: url("/static/fonts/Lora-Bold.otf");
|
|
font-weight: bold;
|
|
font-style: normal;
|
|
}
|
|
@font-face {
|
|
font-family: "Lora";
|
|
src: url("/static/fonts/Lora-Italic.otf");
|
|
font-weight: normal;
|
|
font-style: italic;
|
|
}
|
|
@font-face {
|
|
font-family: "Lora";
|
|
src: url("/static/fonts/Lora-BoldItalic.otf");
|
|
font-weight: bold;
|
|
font-style: italic;
|
|
}
|
|
|
|
:root {
|
|
/* --clr-link: #7cafc2; */
|
|
/* --clr-link: #4ab4ab; */
|
|
/* --clr-subheader: #a1b56c; */
|
|
|
|
/* --clr-bg: #181818;
|
|
--clr-bg-alt: #282828;
|
|
|
|
--clr-border: #383838;
|
|
|
|
--clr-text: #e8e8e8;
|
|
--clr-text-long: #bababa;
|
|
--clr-header: #f7ca88;
|
|
--clr-subheader: #f7ca88;
|
|
--clr-link: hsl(175, 55%, 50%);
|
|
--clr-link-alt: #4ab4ab;
|
|
--clr-code: #ba8baf; */
|
|
|
|
--clr-bg: hsl(0,0%,95%);
|
|
--clr-bg-alt: hsl(0,0%,85%);
|
|
|
|
--clr-border: hsl(0,0%,80%);
|
|
|
|
--clr-text: hsl(0,0%,15%);
|
|
--clr-text-long: hsl(0,0%,10%);
|
|
--clr-text-highlight: hsl(0,50%,40%);
|
|
--clr-header: hsl(0,0%,15%);
|
|
--clr-subheader: hsl(0,0%,15%); /* hsl(36,87%,50%) */
|
|
--clr-link: hsl(175,50%,40%); /* hsl(175,42%,50%) */
|
|
--clr-link-alt: hsl(175,38%,60%);
|
|
--clr-code: hsl(0,0%,15%);
|
|
}
|
|
body {
|
|
font-family: 'dm', 'Courier New', Courier, monospace;
|
|
color: var(--clr-text);
|
|
line-height: 1.4em;
|
|
font-size: 1.1em;
|
|
background-color: var(--clr-bg);
|
|
margin: 24px;
|
|
}
|
|
.container {
|
|
width: 100%;
|
|
max-width: 800px;
|
|
margin: 64px auto 128px;
|
|
overflow: hidden;
|
|
}
|
|
.select-all {
|
|
user-select: all;
|
|
-ms-user-select: all;
|
|
-moz-user-select: all;
|
|
-webkit-user-select: all;
|
|
}
|
|
|
|
a {
|
|
color: var(--clr-link);
|
|
font-weight: bold;
|
|
text-decoration: underline;
|
|
/* border-bottom: 1px solid var(--clr-link); */
|
|
}
|
|
a:hover {
|
|
color: var(--clr-text);
|
|
background-color: var(--clr-link-alt);
|
|
text-decoration: none;
|
|
}
|
|
h1 {
|
|
line-height: 1.2em;
|
|
}
|
|
h2 {
|
|
color: var(--clr-header);
|
|
font-weight: bold;
|
|
margin: 64px 0 0;
|
|
line-height: 1.2em;
|
|
}
|
|
h3 {
|
|
margin: 32px 0 0;
|
|
/* font-weight: bold; */
|
|
color: var(--clr-subheader);
|
|
/* text-decoration: underline; */
|
|
line-height: 1.2em;
|
|
}
|
|
.small {
|
|
font-size: 0.75em !important;
|
|
}
|
|
pre {
|
|
padding: 0 4px;
|
|
background-color: var(--clr-bg-alt);
|
|
border: 2px solid var(--clr-border);
|
|
overflow-x: auto;
|
|
}
|
|
code {
|
|
font-family: 'dm', 'Courier New', Courier, monospace;
|
|
color: var(--clr-code);
|
|
background-color: var(--clr-bg-alt);
|
|
border: 2px solid var(--clr-border);
|
|
font-size: 0.9em;
|
|
}
|
|
pre > code {
|
|
border: 0;
|
|
}
|
|
p > code, li > code {
|
|
padding: 0 2px;
|
|
}
|
|
ul li {
|
|
list-style-type: "|> ";
|
|
}
|
|
blockquote {
|
|
margin-left: 0;
|
|
padding-left: 32px;
|
|
border-left: 2px solid #4ab4ab;
|
|
}
|
|
blockquote strong em {
|
|
color: var(--clr-text-highlight);
|
|
}
|
|
|
|
header.card {
|
|
margin-bottom: 64px;
|
|
}
|
|
header.card {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
header.card .header-image {
|
|
flex: 1;
|
|
flex-basis: auto;
|
|
margin: 8px 32px 8px 0;
|
|
text-align: center;
|
|
}
|
|
header.card .header-description {
|
|
flex: 100;
|
|
flex-basis: auto;
|
|
/* min-width: 360px; */
|
|
margin: 8px 0;
|
|
/* text-align: center; */
|
|
}
|
|
header.card .profile-picture {
|
|
max-width: 160px;
|
|
border-radius: 100%;
|
|
}
|
|
header.card h1 {
|
|
font-size: 1.4em;
|
|
margin: 0 0 16px;
|
|
}
|
|
header.card p {
|
|
font-size: 1.1em;
|
|
margin: 0 0 8px;
|
|
}
|
|
header.card .social a {
|
|
display: inline-block;
|
|
width: 20px;
|
|
height: 20px;
|
|
padding: 8px;
|
|
margin: 0 4px;
|
|
border: 0;
|
|
}
|
|
|
|
.wrapper-table {
|
|
display: block;
|
|
margin: 24px 0 48px;
|
|
overflow-x: auto;
|
|
}
|
|
table {
|
|
width: 100%;
|
|
min-width: 640px;
|
|
border-top: 1px var(--clr-text) solid;
|
|
border-bottom: 1px var(--clr-text) solid;
|
|
border-collapse: collapse;
|
|
line-height: 1.4em;
|
|
}
|
|
table thead {
|
|
/* text-align: left; */
|
|
border-bottom: 1px var(--clr-text) solid;
|
|
}
|
|
/* table tbody {
|
|
margin: 4px 0;
|
|
} */
|
|
table th {
|
|
padding: 8px 12px;
|
|
}
|
|
table td {
|
|
padding: 10px 12px;
|
|
}
|
|
|
|
table.academic-record th:nth-child(1) {
|
|
width: 15%;
|
|
}
|
|
table.academic-record th:nth-child(2) {
|
|
width: 35%;
|
|
}
|
|
table.academic-record th:nth-child(3) {
|
|
width: auto;
|
|
}
|
|
|
|
table.work-experience th:nth-child(1) {
|
|
width: 15%;
|
|
}
|
|
table.work-experience th:nth-child(2) {
|
|
width: 35%;
|
|
}
|
|
table.work-experience th:nth-child(3) {
|
|
width: auto;
|
|
}
|
|
|
|
table.publications th:nth-child(1) {
|
|
width: 15%;
|
|
}
|
|
table.publications th:nth-child(2) {
|
|
width: 35%;
|
|
}
|
|
table.publications th:nth-child(3) {
|
|
width: auto;
|
|
}
|
|
|
|
table.music th:nth-child(1) {
|
|
width: 15%;
|
|
}
|
|
table.music th:nth-child(2) {
|
|
width: 35%;
|
|
}
|
|
table.music th:nth-child(3) {
|
|
width: auto;
|
|
}
|
|
|
|
/* Blog */
|
|
.longform_list {
|
|
margin: 2em 0 0;
|
|
}
|
|
.longform_list__item {
|
|
margin: 2em 0 0;
|
|
font-family: 'Lora', Georgia, Times, serif;
|
|
}
|
|
.longform_list__item a {
|
|
display: inline-block;
|
|
margin: 4px 0;
|
|
font-size: 1.3em;
|
|
}
|
|
|
|
.longform__header {
|
|
font-size: 0.9em;
|
|
color: var(--clr-subheader);
|
|
}
|
|
.longform__content {
|
|
margin: 64px 0 0;
|
|
font-family: 'Lora', Georgia, Times, serif;
|
|
font-size: 1.2em;
|
|
line-height: 1.8em;
|
|
color: var(--clr-text-long);
|
|
}
|
|
.longform__content p {
|
|
margin: 1.5em 0;
|
|
}
|
|
.longform__content code {
|
|
font-size: 0.8em;
|
|
}
|
|
.longform__content ul li {
|
|
list-style-type: "- ";
|
|
}
|
|
.longform__content img {
|
|
display: block;
|
|
max-width: 100%;
|
|
max-height: 480px;
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
}
|
|
.longform__content img + br {
|
|
display: none;
|
|
}
|
|
.longform__content img + br + em {
|
|
display: block;
|
|
text-align: center;
|
|
font-style: normal;
|
|
font-size: 90%;
|
|
}
|
|
|
|
/* Lists */
|
|
.list {
|
|
margin: 64px 0 0;
|
|
}
|
|
.list__item p {
|
|
margin: 0 0 8px;
|
|
}
|
|
|
|
footer {
|
|
margin: 64px 0 0;
|
|
text-align: center;
|
|
}
|