Skip to content

Commit

Permalink
[setup](build): styles/
Browse files Browse the repository at this point in the history
Signed-off-by: Ralph Hightower <[email protected]>
  • Loading branch information
RalphHightower authored Jan 6, 2025
1 parent c1e5358 commit 995d342
Show file tree
Hide file tree
Showing 2 changed files with 208 additions and 0 deletions.
95 changes: 95 additions & 0 deletions chmduquesne.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
<style type="text/css">
/*
* Copyright 2013 Christophe-Marie Duquesne <[email protected]>
*
* CSS for making a resume with pandoc. Inspired by moderncv.
*
* This CSS document is delivered to you under the CC BY-SA 3.0 License.
* https://creativecommons.org/licenses/by-sa/3.0/deed.en_US
*/

/* Whole document */
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
max-width: 800px;
margin: auto;
background: #FFFFFF;
padding: 10px 10px 10px 10px;
}

/* Title of the resume */
h1 {
font-size: 55px;
color: #757575;
text-align:center;
margin-bottom:15px;
}
/* h1:hover { */
/* background-color: #757575; */
/* color: #FFFFFF; */
/* text-shadow: 1px 1px 1px #333; */
/* } */

/* Titles of categories */
h2 {
/* This is called "sectioncolor" in the ConTeXt stylesheet. */
color: #397249;
}
/* There is a bar just before each category */
h2:before {
content: "";
display: inline-block;
margin-right:1%;
width: 16%;
height: 10px;
/* This is called "rulecolor" in the ConTeXt stylesheet. */
background-color: #9CB770;
}
/* h2:hover { */
/* background-color: #397249; */
/* color: #FFFFFF; */
/* text-shadow: 1px 1px 1px #333; */
/* } */

/* Definitions */
dt {
float: left;
clear: left;
width: 17%;
font-weight: bold;
}
dd {
margin-left: 17%;
margin-bottom:7px;
}
p {
margin-top:0;
margin-bottom:7px;
}

/* Blockquotes */
blockquote {
text-align: center
}

/* Links */
a {
text-decoration: none;
color: #397249;
}
a:hover, a:active {
background-color: #397249;
color: #FFFFFF;
text-decoration: none;
text-shadow: 1px 1px 1px #333;
}

/* Horizontal separators */
hr {
color: #A6A6A6;
}

table {
width: 100%;
}
</style>
113 changes: 113 additions & 0 deletions chmduquesne.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
% Copyright 2013 Christophe-Marie Duquesne <[email protected]>
% Copyright 2014 Mark Szepieniec <http://github.com/mszep>
%
% ConText style for making a resume with pandoc. Inspired by moderncv.
%
% This CSS document is delivered to you under the CC BY-SA 3.0 License.
% https://creativecommons.org/licenses/by-sa/3.0/deed.en_US

\startmode[*mkii]
\enableregime[utf-8]
\setupcolors[state=start]
\stopmode
$if(mainlang)$
\mainlanguage[$mainlang$]
$endif$

\setupcolor[hex]
\definecolor[titlegrey][h=757575]
\definecolor[sectioncolor][h=397249]
\definecolor[rulecolor][h=9cb770]

% Enable hyperlinks
\setupinteraction[state=start, color=sectioncolor]

\setuppapersize [$if(papersize)$$papersize$$else$letter$endif$][$if(papersize)$$papersize$$else$letter$endif$]
\setuplayout [width=middle, height=middle,
backspace=20mm, cutspace=0mm,
topspace=10mm, bottomspace=20mm,
header=0mm, footer=0mm]

%\setuppagenumbering[location={footer,center}]

\setupbodyfont[11pt, helvetica]

\setupwhitespace[medium]

\setupblackrules[width=31mm, color=rulecolor]

\setuphead[chapter] [style=\tfd]
\setuphead[section] [style=\tfd\bf, color=titlegrey, align=middle]
\setuphead[subsection] [style=\tfb\bf, color=sectioncolor, align=right,
before={\leavevmode\blackrule\hspace}]
\setuphead[subsubsection][style=\bf]

$if(number-sections)$
$else$
\setuphead[chapter, section, subsection, subsubsection][number=no]
$endif$

%\setupdescriptions[width=10mm]

\definedescription
[description]
[headstyle=bold, style=normal,
location=hanging, width=18mm, distance=14mm, margin=0cm]

\setupitemize[autointro, packed] % prevent orphan list intro
\setupitemize[indentnext=no]

\defineitemgroup[enumerate]
\setupenumerate[each][fit][itemalign=left,distance=.5em,style={\feature[+][default:tnum]}]

\setupfloat[figure][default={here,nonumber}]
\setupfloat[table][default={here,nonumber}]

\setuptables[textwidth=max, HL=none]
\setupxtable[frame=off,option={stretch,width}]

\setupthinrules[width=15em] % width of horizontal rules

\setupdelimitedtext
[blockquote]
[before={\setupalign[middle]},
indentnext=no,
]

$if(toc)$
\setupcombinedlist[content][list={$placelist$}]

$endif$
$for(header-includes)$
$header-includes$
$endfor$

\starttext
$if(title)$
\startalignment[center]
\blank[2*big]
{\tfd $title$}
$if(author)$
\blank[3*medium]
{\tfa $for(author)$$author$$sep$\crlf $endfor$}
$endif$
$if(date)$
\blank[2*medium]
{\tfa $date$}
$endif$
\blank[3*medium]
\stopalignment
$endif$
$for(include-before)$
$include-before$
$endfor$
$if(toc)$
\placecontent
$endif$

$body$

$for(include-after)$
$include-after$
$endfor$
\stoptext

0 comments on commit 995d342

Please sign in to comment.