Skip to content

Commit

Permalink
remove flooose.css from cv layout
Browse files Browse the repository at this point in the history
  • Loading branch information
christopher floess committed Jan 5, 2016
1 parent 2eadf39 commit 6f1c064
Show file tree
Hide file tree
Showing 3 changed files with 73 additions and 9 deletions.
1 change: 0 additions & 1 deletion _layouts/cv.html
@@ -1,7 +1,6 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head>
<link rel="stylesheet" href="/stylesheets/cv.css" type="text/css" />
<link rel="stylesheet" href="/stylesheets/flooose.css" type="text/css" />
<link href='http://fonts.googleapis.com/css?family=Goudy+Bookletter+1911&v1' rel='stylesheet' type='text/css' />
<link href='http://fonts.googleapis.com/css?family=Vollkorn' rel='stylesheet' type='text/css' />
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css' />
Expand Down
22 changes: 15 additions & 7 deletions cv-en.textile
Expand Up @@ -2,16 +2,19 @@
layout: cv
---

<div class="cv-section">
table(key-value).
|_. Name |Christopher Floess|
|_. Born |04.07.1978|
|_. Current | Web Developer|
|_. Education |Bachelor of Arts German Studies, Minor: Computer Science|
|_. Citizenship |German/American Dual Citizenship|
|_. Contact|+49.0176.77307255 or chris.floess@gmail.com|
</div>

h2(cv). Experience

<div class="cv-section">
table(key-value).
|_. 2015 |mindmatters GmbH - Worked on first electron application with React.js and ES6.|
|_. 2015 |mindmatters GmbH - Devops from scratch: continuing work started in 2012, helped to further automate provisioning of servers on legacy systems. Migrated chef configurations to system-installable packages (RPMs).|
Expand All @@ -23,41 +26,46 @@ table(key-value).
|_. 2002 - 2005|OfficeMax Copy Center - Production Supervisor|
|_. 2000 - 2002|Publix Supermarkets - Responsible for receiving, ordering, and inventory of the frozen food department|
|_. 1997 - 2000|Petsmart, Inc. - Receiver|
</div>

h2(cv). Academic Background

<div class="cv-section">
table(key-value).
|_. 2015 - current |coursera.org, Johns Hopkins Data Science Track|
|_. 2005 - 2010 |University of Arizona, Tucson, Arizona, USA – Major: German Studies, Minor: Computer Science|
|_. 2003 - 2005 |Pima Community College, Tucson, Arizona, USA – Welding Technology|
|_. 2002 - 2003 |University of Arizona, Tucson, Arizona, USA – Major, Mathematics|
|_. 1999 - 2002 |Santa Fe Community College, Gainesville, Florida, USA|
|_. 1997 - 1998 |Brevard Community College, Melbourne, Florida, USA|
</div>

h2(cv). Extracurricular

<div class="cv-section">
table(key-value).
|_. 2015 |Coached in Hamburg's second Students on Rails event|
|_. 2013 |Coached in Hamburg's first Students on Rails event aimed at introducing university students to Agile web development with Rails|
|_. 2012 |Co-founder Rubyshift Ruby user group in Munich|
</div>

h2(cv). Academic Achievements and Acknowledgments

<div class="cv-container">
<div class="cv-section">
*(cv) Charles Polzer, S. J., Grant for contributing to the translation of letters of the Swiss missionary Phillipp Segesser
*(cv) Participant in the STORK research project for secure package management – www.cs.arizona.edu/stork/packagemanagersecurity
</div>

h2(cv). Languages

<div class="cv-container">
<div class="cv-section">
*(cv) English (native)
*(cv) German
</div>

h2(cv). Professional Interests

<div class="cv-container">
<div class="cv-section">
*(cv) Lisp
*(cv) Functional programming
*(cv) R
Expand All @@ -68,22 +76,22 @@ h2(cv). Professional Interests

h2(cv). Open Source

<div class="cv-container">
<div class="cv-section">
*(cv) Simple terminal based password manager https://github.com/flooose/password-utility
*(cv) A simple android client for runkeeper.com https://github.com/flooose/gpxkept
</div>

h2(cv). Process

<div class="cv-container">
<div class="cv-section">
*(cv) Scrum/Agile
*(cv) Test driven design and development
*(cv) Behavior-driven outside-in development (Cucumber)
</div>

h2(cv). Hobbies

<div class="cv-container">
<div class="cv-section">
*(cv) Running
*(cv) Surfing
*(cv) Bicycles
Expand All @@ -92,7 +100,7 @@ h2(cv). Hobbies

h2(cv). Summary of Technologies

<div class="cv-container">
<div class="cv-section">
*(cv) Languages / Frameworks
**(sublist) Ruby 1.8.x – current
** Rails 2.3.5 – current
Expand Down
59 changes: 58 additions & 1 deletion stylesheets/cv.scss
@@ -1,5 +1,62 @@
---
---

body {
font-size: 10px;
align: "center";
color: #3A463D;
}

div#container {
width: auto;
max-width: 1024px;
margin: auto;
font-size: 1.4em;
}

h1, h2 {
margin: 0.286em 0;
font-family: 'Vollkorn';
color: #282A2A;
}

.sublist {
padding-top: 10px;
}
}

div.cv-section {
border: solid 1px #EFEFF1;
border-radius: 0.36em;
margin-bottom: 25px;
}

@mixin cv-section-item() {
font-size: 1.2em;
padding: 5px;
}

li.cv {
@include cv-section-item();
}

table.key-value {
width: 1024px;
border: none;
margin: 14px 0;
padding: 5px;
border-collapse: collapse;
tr {
@include cv-section-item();
height: 20px;
vertical-align: middle;
}
th {
padding: 8px;
padding-left: 23px;
text-align: left;
width: 15%;
}
td {
padding: 8px;
}
}

0 comments on commit 6f1c064

Please sign in to comment.