Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
emina committed Jul 4, 2023
0 parents commit 24b822a
Show file tree
Hide file tree
Showing 7 changed files with 571 additions and 0 deletions.
32 changes: 32 additions & 0 deletions css/base.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
@import "light.min.css";

footer {
margin-top: 2rem;
margin-bottom: 2rem;
font-size: x-small;
}

nav ul {
list-style-type: none;
margin: 0;
padding: 0;
text-align: left;
}

nav ul li {
display: inline-block;
margin: 0;
padding: 0;
}

nav ul li::before {
content: "·";
margin-right: .5rem;
margin-left: .25rem;
}

nav ul li:first-child::before {
content: "";
margin: 0;
padding: 0;
}
105 changes: 105 additions & 0 deletions css/cv.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
@import "base.css";

body {
font-size: small;
line-height: 1.25;
max-width: 80ch;
counter-reset: pub;
}

ol {
list-style-type: none;
list-style-position: outside;
padding: 0;
margin: 0;
}

ol li {
counter-increment: pub;
text-indent: -2rem;
padding-left: 2rem;
margin-top: .25rem;
}

ol li::before {
content: "[" counter(pub) "]";
display: inline-block;
width: 1.5rem;
font-size: smaller;
text-align: right;
margin-right: .5rem;
}

header {
border-bottom: 1px solid var(--b-line);
}

header h1 {
display: inline-block;
margin-bottom: .5rem;
}

header div {
float: right;
margin-top: 2rem;
line-height: 1.5;
}

h2 {
font-size: 1.25rem;
}

h3 {
font-size: 1rem;
}

address {
margin: 0;
font-style: normal;
}

address::after {
content: "@cs.washington.edu";
}

table {
width: 100%;
}

tr {
border: 0;
}

th,
td {
padding: .1rem .1rem;
vertical-align: top;
}

th:first-child,
td:first-child {
text-align: left;
padding-left: 0; padding-right: 0;
}

th:last-child,
td:last-child {
text-align: right;
padding-right: 0;
width: auto;
white-space:nowrap;
font-size: small;
}

@media print {
footer { display: none; }
a {
color: black;
}
@page {
margin: 1in;
}
h1, h2, h3 {
page-break-after: avoid; }
}

1 change: 1 addition & 0 deletions css/light.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 24b822a

Please sign in to comment.