about summary refs log tree commit diff
path: root/static/css/resume.css
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-10-27 09:58:33 -0700
committerFranck Cuny <franck@fcuny.net>2022-10-27 09:58:33 -0700
commit8a749d41915a9fc5dc0524a39faf75a24369aa6b (patch)
treeed397926cfa1f1fb782bd83ad8994fc6a5f93fdd /static/css/resume.css
parentref(css): set font family to sans-serif; darker background for code (diff)
downloadfcuny.net-8a749d41915a9fc5dc0524a39faf75a24369aa6b.tar.gz
feat(content): add my resume
Add my resume to the content, with a dedicated CSS. The resume is in
org-mode format, and I use `pandoc` to convert it to HTML. This is done
when the site is build, and is integrated in the docker image.

It is available at /resume.html, but is not listed on the site, that way
I can give the URL to who ever is interested in the future.

It would be useful to also generate a PDF version of it and store it
with other static content.
Diffstat (limited to '')
-rw-r--r--static/css/resume.css72
1 files changed, 72 insertions, 0 deletions
diff --git a/static/css/resume.css b/static/css/resume.css
new file mode 100644
index 0000000..13ed9b3
--- /dev/null
+++ b/static/css/resume.css
@@ -0,0 +1,72 @@
+body {
+  font-family: sans-serif;
+  font-size: 1em;
+  line-height: 1.8em;
+  color: #0e0e0b;
+  margin: 1em auto;
+  padding: 0 0.55em;
+  max-width: 50rem;
+}
+
+h1 {
+  color: #0e0e0b;
+  font-size: 1.3rem;
+}
+
+h2, h3 {
+  border-bottom: 1px solid #eee;
+  font-style: italic;
+}
+h2 {
+  margin-top: 1.25em;
+  margin-bottom: 0.41em;
+  font-size: 1.2rem;
+}
+h3 {
+  margin-top: 1.5em;
+  margin-bottom: 0.5em;
+  font-size: 1rem;
+}
+
+hr{
+  color:#000111;
+  background-color:#000111;
+  border:none;
+  height:1px
+}
+
+a {
+  color:#047bc2;
+  transition:color .1s ease-in-out;
+}
+
+table {
+  width: 100%;
+  border-spacing: 0px;
+  outline: none;
+}
+td{
+  padding-right: 0.7em;
+}
+td:last-child {
+  text-align: right;
+}
+table, th, td {
+  font-family: monospace;
+  color: #000;
+}
+
+#title-block-header {
+  padding-right: 10px;
+  font-size: 1.4em;
+  display: flex;
+  font-family: monospace;
+  justify-content: space-between;
+  align-items: center;
+  padding-top: 0.5rem;
+  border-bottom: 1px;
+}
+
+#experience {
+  padding-top: 20px;
+}