@ -0,0 +1,53 @@
|
||||
<header>
|
||||
<div class="row" style="margin-left:5%; margin-right:5% ">
|
||||
<nav class="primary" id="Nav" style="width:100%">
|
||||
<a class="brand" href="/">Alex Selimov</a>
|
||||
<div class="spacer"></div>
|
||||
<div class="item">
|
||||
<a href="/posts">Posts</a>
|
||||
</div>
|
||||
<div class="item">
|
||||
<a href="/publications">Publications</a>
|
||||
</div>
|
||||
<div class="item">
|
||||
<a href="/presentations">Presentations</a>
|
||||
</div>
|
||||
<div class="item">
|
||||
<a href="/cv">CV</a>
|
||||
</div>
|
||||
</nav>
|
||||
<center>
|
||||
<a class="brand-mobile" href="/"><h3>Alex Selimov</h3></a>
|
||||
</center>
|
||||
</div>
|
||||
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
|
||||
<div class="hamburger" id="Ham">
|
||||
<div class = "bars" >
|
||||
<span class="bar"></span>
|
||||
<span class="bar"></span>
|
||||
<span class="bar"></span>
|
||||
</div>
|
||||
<div class = "close">
|
||||
<i class="fa-solid fa-xmark fa-2x"></i>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
<nav class="mobile" id="Navmobile">
|
||||
<div class="mobile-item">
|
||||
<a href="/posts">Posts</a>
|
||||
</div>
|
||||
<div class="mobile-item">
|
||||
<a href="/publications">Publications</a>
|
||||
</div>
|
||||
<div class="item">
|
||||
<a href="/presentations">Presentations</a>
|
||||
</div>
|
||||
<div class="mobile-item">
|
||||
<a href="/cv">CV</a>
|
||||
</div>
|
||||
</nav>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
|
||||
</header>
|
@ -0,0 +1,20 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2022 YOUR_NAME_HERE
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
this software and associated documentation files (the "Software"), to deal in
|
||||
the Software without restriction, including without limitation the rights to
|
||||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
the Software, and to permit persons to whom the Software is furnished to do so,
|
||||
subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
@ -0,0 +1,4 @@
|
||||
# Personal Hugo Theme
|
||||
|
||||
This is the theme that I've developed for my personal website [alexselimov.com](https://alexselimov.com).
|
||||
Reach out to me if you have any questions or if you need help adjusting it to your needs.
|
@ -0,0 +1,6 @@
|
||||
---
|
||||
title: "{{ replace .Name "-" " " | title }}"
|
||||
date: {{ .Date }}
|
||||
---
|
||||
+++
|
||||
+++
|
@ -0,0 +1,5 @@
|
||||
---
|
||||
title: "{{ replace .Name "-" " " | title }}"
|
||||
date: {{ .Date }}
|
||||
---
|
||||
<++>
|
@ -0,0 +1,16 @@
|
||||
---
|
||||
title: "{{ replace .Name "-" " " | title }}"
|
||||
date: {{ .Date }}
|
||||
authors: <++>
|
||||
linkToPublisher: "<++>"
|
||||
manuscriptLink: "<++>"
|
||||
citation: "<++>"
|
||||
figureLink: "<++>"
|
||||
figureCaption: "<++>"
|
||||
draft: false
|
||||
---
|
||||
|
||||
Abstract:
|
||||
|
||||
|
||||
|
@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{ .Site.LanguageCode }}">
|
||||
{{- partial "head.html" . -}}
|
||||
<body>
|
||||
{{- partial "header.html" . -}}
|
||||
<main>
|
||||
{{- block "main" . }}{{- end }}
|
||||
</main>
|
||||
{{- partial "footer.html" . -}}
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,20 @@
|
||||
{{ define "main" }}
|
||||
<div class="container">
|
||||
<div class="section">
|
||||
<div class="content">
|
||||
<h2 class="title" style="color:#fbf1c7">{{ .Title }}</h2>
|
||||
{{ .Content }}
|
||||
<div class="linklist">
|
||||
{{ range .Pages }}
|
||||
<a href="{{ .Permalink }}">
|
||||
<h4>{{ .Params.title }}</h4>
|
||||
<p style="font-size:1.6rem">{{ dateFormat "Jan 2, 2006" .Date }} </p>
|
||||
<p style="font-size:1.8rem">{{.Summary }}</p>
|
||||
</a>
|
||||
{{end}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
|
@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{ .Site.LanguageCode }}">
|
||||
{{- partial "head.html" . -}}
|
||||
<body>
|
||||
{{- partial "header.html" . -}}
|
||||
<main>
|
||||
{{- block "main" . }} {{ .Content }} {{- end }}
|
||||
</main>
|
||||
{{- partial "footer.html" . -}}
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,27 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{ .Site.LanguageCode }}">
|
||||
{{- partial "head.html" . -}}
|
||||
<body>
|
||||
{{- partial "header.html" . -}}
|
||||
<main>
|
||||
<div class="container">
|
||||
{{- block "main" . }}
|
||||
<strong>{{ .Title }}</strong> <br/>
|
||||
Authors: {{ .Params.authors }}<br/>
|
||||
<br/>
|
||||
{{ if .Params.linkToPublisher }} <a href="{{ .Params.linkToPublisher }}">Link to publisher</a><br/> {{ end }}
|
||||
|
||||
{{ if .Params.manuscriptLink }} <a href="{{ .Params.manuscriptLink }}"><i class="fa-solid fa-download"></i> Click here to download manuscript preprint</a> <br/><br/> {{ end }}
|
||||
|
||||
{{ .Content }}
|
||||
{{ if .Params.figureLink }}
|
||||
{{ if.Params.figureCaption }}
|
||||
<figure> <img src="{{ .Params.figureLink }}" style="display: block; width:75%; max-width:600px; height: auto; margin: auto;" alt="{{ .Params.figureCaption }}" /> <figcaption aria-hidden="true">{{ .Params.figureCaption }}</figcaption> </figure>
|
||||
{{ end }}
|
||||
{{ end}}
|
||||
{{- end }}
|
||||
</div>
|
||||
</main>
|
||||
{{- partial "footer.html" . -}}
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{ .Site.LanguageCode }}">
|
||||
{{- partial "head.html" . -}}
|
||||
<body>
|
||||
{{- partial "header.html" . -}}
|
||||
<main>
|
||||
{{- block "main" . }} {{ .Content }} {{- end }}
|
||||
</main>
|
||||
{{- partial "footer.html" . -}}
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,53 @@
|
||||
{{ define "main" }}
|
||||
<div class="container">
|
||||
<div class="row" >
|
||||
<center>
|
||||
<div style="text-align: center;">
|
||||
<img src="headshot.png" alt="Alex Selimov headshot" width="50%" height=auto style="max-width:200px;">
|
||||
<br>
|
||||
|
||||
<h1>{{ .Site.Params.name }} </h1>
|
||||
<h2> {{ .Site.Params.tagline}} <br>
|
||||
<a href="{{.Site.Params.company_link}}">{{ .Site.Params.company}} </a></h2>
|
||||
|
||||
{{if isset .Site.Params "email"}}
|
||||
<a href="{{.Site.Params.email}}"><img class="linklogo" src="logos/email.svg" alt="Email"></a>
|
||||
{{end}}
|
||||
{{if isset .Site.Params "gitlab"}}
|
||||
<a href="{{.Site.Params.gitlab}}"><img class="linklogo" src="logos/gitlab.svg" alt="Gitlab"></a>
|
||||
{{end}}
|
||||
|
||||
{{if isset .Site.Params "scholar"}}
|
||||
<a href="{{.Site.Params.scholar}}"><img class="linklogo" src="logos/scholar.svg" alt="Google Scholar"></a>
|
||||
{{end}}
|
||||
|
||||
{{if isset .Site.Params "gnupg"}}
|
||||
<a href="{{.Site.Params.gnupg}}"><img class="linklogo" src="logos/gnupg.svg" alt="Google Scholar" style="height:35px; width:auto"></a>
|
||||
{{end}}
|
||||
</div>
|
||||
</center>
|
||||
</div>
|
||||
<center>
|
||||
<br>
|
||||
<div class="row" style="max-width:650px">
|
||||
{{.Content}}
|
||||
</div>
|
||||
</center>
|
||||
<br/>
|
||||
<h2>Recent</h2>
|
||||
<div class="linklist">
|
||||
{{ range ( where .Site.RegularPages "Type" "posts" | first 5 ) }}
|
||||
<a href="{{ .Permalink }}">
|
||||
<h4>{{ .Params.title }}</h4>
|
||||
<p style="font-size:1.6rem">{{ dateFormat "Jan 2, 2006" .Date }} </p>
|
||||
<p style="font-size:1.8rem">{{.Summary }}</p>
|
||||
</a>
|
||||
|
||||
{{end}}
|
||||
<center>
|
||||
<a href="/posts" style="margin:40px; display:block;"><button>Show More</button></a>
|
||||
</center>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
@ -0,0 +1,14 @@
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="date" content=''>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>{{ .Site.Title }}</title>
|
||||
<!-- CSS Reset -->
|
||||
<link rel="stylesheet" href="/css/normalize.css">
|
||||
<link rel="stylesheet" href="/css/skeleton.css">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap" rel="stylesheet">
|
||||
<script src="https://kit.fontawesome.com/3a435f828b.js" crossorigin="anonymous"></script>
|
||||
<script src="/js/func.js"></script>
|
||||
</head>
|
@ -0,0 +1,53 @@
|
||||
<header>
|
||||
<div class="row" style="margin-left:5%; margin-right:5% ">
|
||||
<nav class="primary" id="Nav" style="width:100%">
|
||||
<a class="brand" href="/">Alex Selimov</a>
|
||||
<div class="spacer"></div>
|
||||
<div class="item">
|
||||
<a href="/posts">Posts</a>
|
||||
</div>
|
||||
<div class="item">
|
||||
<a href="/recipes">Recipes</a>
|
||||
</div>
|
||||
<div class="dropdown item">
|
||||
<button class="dropbtn">About Me<i class="fa fa-caret-down"></i></button>
|
||||
<div class = "dropdown-content">
|
||||
<a href="/publications">Publications</a>
|
||||
<a href="/presentations">Presentations</a>
|
||||
<a href="/cv">Curriculum Vitae</a>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
<center>
|
||||
<a class="brand-mobile" href="/"><h2>Alex Selimov</h2></a>
|
||||
</center>
|
||||
</div>
|
||||
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
|
||||
<div class="hamburger" id="Ham">
|
||||
<div class = "bars" >
|
||||
<span class="bar"></span>
|
||||
<span class="bar"></span>
|
||||
<span class="bar"></span>
|
||||
</div>
|
||||
<div class = "close">
|
||||
<i class="fa-solid fa-xmark fa-2x"></i>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
<nav class="mobile" id="Navmobile">
|
||||
<div class="mobile-item">
|
||||
<a href="/posts">Posts</a>
|
||||
</div>
|
||||
<div class="mobile-item">
|
||||
<a href="/publications">Publications</a>
|
||||
</div>
|
||||
<div class="mobile-item">
|
||||
<a href="/presentations">Presentations</a>
|
||||
</div>
|
||||
<div class="mobile-item">
|
||||
<a href="/cv">CV</a>
|
||||
</div>
|
||||
</nav>
|
||||
<br>
|
||||
|
||||
</header>
|
@ -0,0 +1,16 @@
|
||||
{{ define "main" }}
|
||||
<div class="container">
|
||||
<div class="section">
|
||||
<div class="content">
|
||||
<h1 class="title">{{ .Title }}</h1>
|
||||
{{ .Content }}
|
||||
{{ range .Pages }}
|
||||
<ul>
|
||||
<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
|
||||
</ul>
|
||||
{{ end }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
|
@ -0,0 +1,15 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{ .Site.LanguageCode }}">
|
||||
{{- partial "head.html" . -}}
|
||||
<body>
|
||||
{{- partial "header.html" . -}}
|
||||
<main>
|
||||
<div class="container">
|
||||
<h1>{{ .Title }} </h1>
|
||||
<br>
|
||||
{{ .Content }}
|
||||
</div>
|
||||
</main>
|
||||
{{- partial "footer.html" . -}}
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,28 @@
|
||||
{{ define "main" }}
|
||||
<div class="container">
|
||||
<div class="section">
|
||||
<div class="content">
|
||||
<h2 class="title" style="color:#fbf1c7">{{ .Title }}</h2>
|
||||
{{ .Content }}
|
||||
<div class="linklist">
|
||||
{{ range .Pages }}
|
||||
{{ if (isset .Params "link") }}
|
||||
<a href="{{ .Params.link}}">
|
||||
<h4>{{ .Params.title }}</h4>
|
||||
<p style="font-size:1.6rem">{{ dateFormat "Jan 2, 2006" .Date }} </p>
|
||||
<p style="font-size:1.8rem">{{.Summary }}</p>
|
||||
</a>
|
||||
{{ else }}
|
||||
<p style="margin:30px 0px">
|
||||
<h4>{{ .Params.title }}</h4>
|
||||
<p style="font-size:1.6rem">{{ dateFormat "Jan 2, 2006" .Date }} </p>
|
||||
<p style="font-size:1.8rem">{{.Summary }}</p>
|
||||
</p>
|
||||
{{end}}
|
||||
{{end}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
|
@ -0,0 +1,20 @@
|
||||
{{ define "main" }}
|
||||
<div class="container">
|
||||
<div class="section">
|
||||
<div class="content">
|
||||
<h2 class="title" style="color:#fbf1c7">{{ .Title }}</h2>
|
||||
{{ .Content }}
|
||||
<div class="linklist">
|
||||
{{ range .Pages }}
|
||||
<a href="{{ .Permalink }}">
|
||||
<h4>{{ .Params.title }}</h4>
|
||||
<p style="font-size:1.6rem">{{ dateFormat "Jan 2, 2006" .Date }} </p>
|
||||
<p style="font-size:1.8rem">{{.Summary }}</p>
|
||||
</a>
|
||||
{{end}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
|
@ -0,0 +1,27 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{ .Site.LanguageCode }}">
|
||||
{{- partial "head.html" . -}}
|
||||
<body>
|
||||
{{- partial "header.html" . -}}
|
||||
<main>
|
||||
<div class="container">
|
||||
{{- block "main" . }}
|
||||
<strong>{{ .Title }}</strong> <br/>
|
||||
Authors: {{ .Params.authors }}<br/>
|
||||
<br/>
|
||||
{{ if .Params.linkToPublisher }} <a href="{{ .Params.linkToPublisher }}">Link to publisher</a><br/> {{ end }}
|
||||
|
||||
{{ if .Params.manuscriptLink }} <a href="{{ .Params.manuscriptLink }}"><i class="fa-solid fa-download"></i> Click here to download manuscript preprint</a> <br/><br/> {{ end }}
|
||||
|
||||
{{ .Content }}
|
||||
{{ if .Params.figureLink }}
|
||||
{{ if.Params.figureCaption }}
|
||||
<figure> <img src="{{ .Params.figureLink }}" style="display: block; width:75%; max-width:600px; height: auto; margin: auto;" alt="{{ .Params.figureCaption }}" /> <figcaption aria-hidden="true">{{ .Params.figureCaption }}</figcaption> </figure>
|
||||
{{ end }}
|
||||
{{ end}}
|
||||
{{- end }}
|
||||
</div>
|
||||
</main>
|
||||
{{- partial "footer.html" . -}}
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,23 @@
|
||||
{{ define "main" }}
|
||||
<div class="container">
|
||||
<div class="section">
|
||||
<div class="content">
|
||||
<h2 class="title" style="color:#fbf1c7">{{ .Title }}</h2>
|
||||
{{ range .Site.Taxonomies.tags }}
|
||||
<a href="{{ .Page.Permalink }}">{{ .Page.Title }}</a> {{ .Count }} ·
|
||||
{{ end }}
|
||||
{{ .Content }}
|
||||
<div class="linklist">
|
||||
{{ range .Pages }}
|
||||
<a href="{{ .Permalink }}">
|
||||
<h4>{{ .Params.title }}</h4>
|
||||
<p style="font-size:1.6rem">{{ dateFormat "Jan 2, 2006" .Date }} </p>
|
||||
<p style="font-size:1.8rem">{{.Summary }}</p>
|
||||
</a>
|
||||
{{end}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
|
@ -0,0 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{ .Site.LanguageCode }}">
|
||||
{{- partial "head.html" . -}}
|
||||
<body>
|
||||
{{- partial "header.html" . -}}
|
||||
<main>
|
||||
<div class="container">
|
||||
<h1>{{ .Title }} </h1>
|
||||
Tags:{{ .Params.tags }}
|
||||
<br>
|
||||
{{ .Content }}
|
||||
</div>
|
||||
</main>
|
||||
{{- partial "footer.html" . -}}
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1 @@
|
||||
<i class={{ .Get "class" }}></i>
|
@ -0,0 +1,5 @@
|
||||
<ul>
|
||||
{{ range where .Site.RegularPages "Section" "presentations" }}
|
||||
<li> {{ .Params.title}}</li>
|
||||
{{ end }}
|
||||
</ul>
|
@ -0,0 +1,5 @@
|
||||
<ul>
|
||||
{{ range where .Site.RegularPages "Section" "publications" }}
|
||||
<li> {{ .Params.citation }}</li>
|
||||
{{ end }}
|
||||
</ul>
|
@ -0,0 +1,427 @@
|
||||
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
|
||||
|
||||
/**
|
||||
* 1. Set default font family to sans-serif.
|
||||
* 2. Prevent iOS text size adjust after orientation change, without disabling
|
||||
* user zoom.
|
||||
*/
|
||||
|
||||
html {
|
||||
font-family: sans-serif; /* 1 */
|
||||
-ms-text-size-adjust: 100%; /* 2 */
|
||||
-webkit-text-size-adjust: 100%; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove default margin.
|
||||
*/
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* HTML5 display definitions
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Correct `block` display not defined for any HTML5 element in IE 8/9.
|
||||
* Correct `block` display not defined for `details` or `summary` in IE 10/11
|
||||
* and Firefox.
|
||||
* Correct `block` display not defined for `main` in IE 11.
|
||||
*/
|
||||
|
||||
article,
|
||||
aside,
|
||||
details,
|
||||
figcaption,
|
||||
figure,
|
||||
footer,
|
||||
header,
|
||||
hgroup,
|
||||
main,
|
||||
menu,
|
||||
nav,
|
||||
section,
|
||||
summary {
|
||||
display: block;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct `inline-block` display not defined in IE 8/9.
|
||||
* 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
|
||||
*/
|
||||
|
||||
audio,
|
||||
canvas,
|
||||
progress,
|
||||
video {
|
||||
display: inline-block; /* 1 */
|
||||
vertical-align: baseline; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Prevent modern browsers from displaying `audio` without controls.
|
||||
* Remove excess height in iOS 5 devices.
|
||||
*/
|
||||
|
||||
audio:not([controls]) {
|
||||
display: none;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address `[hidden]` styling not present in IE 8/9/10.
|
||||
* Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
|
||||
*/
|
||||
|
||||
[hidden],
|
||||
template {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Links
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove the gray background color from active links in IE 10.
|
||||
*/
|
||||
|
||||
a {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
/**
|
||||
* Improve readability when focused and also mouse hovered in all browsers.
|
||||
*/
|
||||
|
||||
a:active,
|
||||
a:hover {
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
/* Text-level semantics
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Address styling not present in IE 8/9/10/11, Safari, and Chrome.
|
||||
*/
|
||||
|
||||
abbr[title] {
|
||||
border-bottom: 1px dotted;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
|
||||
*/
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address styling not present in Safari and Chrome.
|
||||
*/
|
||||
|
||||
dfn {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address variable `h1` font-size and margin within `section` and `article`
|
||||
* contexts in Firefox 4+, Safari, and Chrome.
|
||||
*/
|
||||
|
||||
h1 {
|
||||
font-size: 2em;
|
||||
margin: 0.67em 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address styling not present in IE 8/9.
|
||||
*/
|
||||
|
||||
mark {
|
||||
background: #ff0;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address inconsistent and variable font size in all browsers.
|
||||
*/
|
||||
|
||||
small {
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
/**
|
||||
* Prevent `sub` and `sup` affecting `line-height` in all browsers.
|
||||
*/
|
||||
|
||||
sub,
|
||||
sup {
|
||||
font-size: 75%;
|
||||
line-height: 0;
|
||||
position: relative;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
sup {
|
||||
top: -0.5em;
|
||||
}
|
||||
|
||||
sub {
|
||||
bottom: -0.25em;
|
||||
}
|
||||
|
||||
/* Embedded content
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove border when inside `a` element in IE 8/9/10.
|
||||
*/
|
||||
|
||||
img {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct overflow not hidden in IE 9/10/11.
|
||||
*/
|
||||
|
||||
svg:not(:root) {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/* Grouping content
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Address margin not present in IE 8/9 and Safari.
|
||||
*/
|
||||
|
||||
figure {
|
||||
margin: 1em 40px;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address differences between Firefox and other browsers.
|
||||
*/
|
||||
|
||||
hr {
|
||||
-moz-box-sizing: content-box;
|
||||
box-sizing: content-box;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Contain overflow in all browsers.
|
||||
*/
|
||||
|
||||
pre {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address odd `em`-unit font size rendering in all browsers.
|
||||
*/
|
||||
|
||||
code,
|
||||
kbd,
|
||||
pre,
|
||||
samp {
|
||||
font-family: monospace, monospace;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
/* Forms
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Known limitation: by default, Chrome and Safari on OS X allow very limited
|
||||
* styling of `select`, unless a `border` property is set.
|
||||
*/
|
||||
|
||||
/**
|
||||
* 1. Correct color not being inherited.
|
||||
* Known issue: affects color of disabled elements.
|
||||
* 2. Correct font properties not being inherited.
|
||||
* 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
|
||||
*/
|
||||
|
||||
button,
|
||||
input,
|
||||
optgroup,
|
||||
select,
|
||||
textarea {
|
||||
color: inherit; /* 1 */
|
||||
font: inherit; /* 2 */
|
||||
margin: 0; /* 3 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Address `overflow` set to `hidden` in IE 8/9/10/11.
|
||||
*/
|
||||
|
||||
button {
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address inconsistent `text-transform` inheritance for `button` and `select`.
|
||||
* All other form control elements do not inherit `text-transform` values.
|
||||
* Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
|
||||
* Correct `select` style inheritance in Firefox.
|
||||
*/
|
||||
|
||||
button,
|
||||
select {
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
|
||||
* and `video` controls.
|
||||
* 2. Correct inability to style clickable `input` types in iOS.
|
||||
* 3. Improve usability and consistency of cursor style between image-type
|
||||
* `input` and others.
|
||||
*/
|
||||
|
||||
button,
|
||||
html input[type="button"], /* 1 */
|
||||
input[type="reset"],
|
||||
input[type="submit"] {
|
||||
-webkit-appearance: button; /* 2 */
|
||||
cursor: pointer; /* 3 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Re-set default cursor for disabled elements.
|
||||
*/
|
||||
|
||||
button[disabled],
|
||||
html input[disabled] {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove inner padding and border in Firefox 4+.
|
||||
*/
|
||||
|
||||
button::-moz-focus-inner,
|
||||
input::-moz-focus-inner {
|
||||
border: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Address Firefox 4+ setting `line-height` on `input` using `!important` in
|
||||
* the UA stylesheet.
|
||||
*/
|
||||
|
||||
input {
|
||||
line-height: normal;
|
||||
}
|
||||
|
||||
/**
|
||||
* It's recommended that you don't attempt to style these elements.
|
||||
* Firefox's implementation doesn't respect box-sizing, padding, or width.
|
||||
*
|
||||
* 1. Address box sizing set to `content-box` in IE 8/9/10.
|
||||
* 2. Remove excess padding in IE 8/9/10.
|
||||
*/
|
||||
|
||||
input[type="checkbox"],
|
||||
input[type="radio"] {
|
||||
box-sizing: border-box; /* 1 */
|
||||
padding: 0; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Fix the cursor style for Chrome's increment/decrement buttons. For certain
|
||||
* `font-size` values of the `input`, it causes the cursor style of the
|
||||
* decrement button to change from `default` to `text`.
|
||||
*/
|
||||
|
||||
input[type="number"]::-webkit-inner-spin-button,
|
||||
input[type="number"]::-webkit-outer-spin-button {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Address `appearance` set to `searchfield` in Safari and Chrome.
|
||||
* 2. Address `box-sizing` set to `border-box` in Safari and Chrome
|
||||
* (include `-moz` to future-proof).
|
||||
*/
|
||||
|
||||
input[type="search"] {
|
||||
-webkit-appearance: textfield; /* 1 */
|
||||
-moz-box-sizing: content-box;
|
||||
-webkit-box-sizing: content-box; /* 2 */
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove inner padding and search cancel button in Safari and Chrome on OS X.
|
||||
* Safari (but not Chrome) clips the cancel button when the search input has
|
||||
* padding (and `textfield` appearance).
|
||||
*/
|
||||
|
||||
input[type="search"]::-webkit-search-cancel-button,
|
||||
input[type="search"]::-webkit-search-decoration {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
/**
|
||||
* Define consistent border, margin, and padding.
|
||||
*/
|
||||
|
||||
fieldset {
|
||||
border: 1px solid #c0c0c0;
|
||||
margin: 0 2px;
|
||||
padding: 0.35em 0.625em 0.75em;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1. Correct `color` not being inherited in IE 8/9/10/11.
|
||||
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
|
||||
*/
|
||||
|
||||
legend {
|
||||
border: 0; /* 1 */
|
||||
padding: 0; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove default vertical scrollbar in IE 8/9/10/11.
|
||||
*/
|
||||
|
||||
textarea {
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Don't inherit the `font-weight` (applied by a rule above).
|
||||
* NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
|
||||
*/
|
||||
|
||||
optgroup {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/* Tables
|
||||
========================================================================== */
|
||||
|
||||
/**
|
||||
* Remove most spacing between table cells.
|
||||
*/
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
||||
|
||||
td,
|
||||
th {
|
||||
padding: 0;
|
||||
}
|
@ -0,0 +1,94 @@
|
||||
/*
|
||||
* Copyright 2013 Christophe-Marie Duquesne <chmd@chmd.fr>
|
||||
*
|
||||
* 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;
|
||||
width: 800px;
|
||||
margin: auto;
|
||||
background: #FFFFFF;
|
||||
padding: 10px 10px 10px 10px;
|
||||
}
|
||||
|
||||
/*
|
||||
.title {
|
||||
display: none;
|
||||
}
|
||||
*/
|
||||
|
||||
/* Title of the resume */
|
||||
h1 {
|
||||
font-size: 42px;
|
||||
color: #757575;
|
||||
text-align:center;
|
||||
margin-bottom:15px;
|
||||
}
|
||||
|
||||
/* Titles of categories */
|
||||
h2 {
|
||||
color: #397249;
|
||||
}
|
||||
/* There is a bar just before each category */
|
||||
h2:before {
|
||||
content: "";
|
||||
display: inline-block;
|
||||
margin-right:1%;
|
||||
width: 16%;
|
||||
height: 10px;
|
||||
background-color: #9CB770;
|
||||
}
|
||||
|
||||
/* Definitions */
|
||||
dt {
|
||||
float: left;
|
||||
clear: left;
|
||||
width: 17%;
|
||||
font-weight: bold;
|
||||
}
|
||||
dd {
|
||||
margin-left: 17%;
|
||||
}
|
||||
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;
|
||||
}
|
||||
|
||||
figure[src$='#center']
|
||||
{
|
||||
display: block;
|
||||
margin: 0.7rem auto; /* you can replace the vertical '0.7rem' by
|
||||
whatever floats your boat, but keep the
|
||||
horizontal 'auto' for this to work */
|
||||
/* whatever else styles you fancy here */
|
||||
}
|
||||
|
||||
|
||||
|
After Width: | Height: | Size: 741 B |
After Width: | Height: | Size: 536 B |
After Width: | Height: | Size: 454 B |
After Width: | Height: | Size: 488 B |
After Width: | Height: | Size: 921 B |
After Width: | Height: | Size: 707 B |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 349 B |
After Width: | Height: | Size: 317 B |
After Width: | Height: | Size: 463 B |
After Width: | Height: | Size: 564 B |
After Width: | Height: | Size: 766 B |
After Width: | Height: | Size: 376 B |
After Width: | Height: | Size: 786 B |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 364 B |
After Width: | Height: | Size: 684 B |
After Width: | Height: | Size: 539 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 778 B |
After Width: | Height: | Size: 867 B |
After Width: | Height: | Size: 359 B |
After Width: | Height: | Size: 633 B |
After Width: | Height: | Size: 365 B |
After Width: | Height: | Size: 572 B |
After Width: | Height: | Size: 400 B |
After Width: | Height: | Size: 691 B |
After Width: | Height: | Size: 644 B |
After Width: | Height: | Size: 678 B |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 832 B |
After Width: | Height: | Size: 348 B |
After Width: | Height: | Size: 281 B |
After Width: | Height: | Size: 456 B |
After Width: | Height: | Size: 722 B |
After Width: | Height: | Size: 373 B |
After Width: | Height: | Size: 518 B |
After Width: | Height: | Size: 1023 B |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 393 B |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 670 B |
After Width: | Height: | Size: 747 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 525 B |
After Width: | Height: | Size: 863 B |
After Width: | Height: | Size: 298 B |
After Width: | Height: | Size: 313 B |
After Width: | Height: | Size: 716 B |
After Width: | Height: | Size: 518 B |
After Width: | Height: | Size: 208 B |
After Width: | Height: | Size: 360 B |
After Width: | Height: | Size: 690 B |
After Width: | Height: | Size: 465 B |
After Width: | Height: | Size: 464 B |
After Width: | Height: | Size: 258 B |
After Width: | Height: | Size: 654 B |
After Width: | Height: | Size: 623 B |
After Width: | Height: | Size: 428 B |
After Width: | Height: | Size: 378 B |
After Width: | Height: | Size: 767 B |
After Width: | Height: | Size: 849 B |
After Width: | Height: | Size: 1009 B |
After Width: | Height: | Size: 833 B |
After Width: | Height: | Size: 544 B |
After Width: | Height: | Size: 439 B |
After Width: | Height: | Size: 572 B |
After Width: | Height: | Size: 366 B |
After Width: | Height: | Size: 929 B |