Compare commits

..

No commits in common. "29b2f001f441d2a5c62b884e90e6b8471f0ce412" and "9d22a639500253a6aceac9aa86caacb881070d1c" have entirely different histories.

16 changed files with 84 additions and 87 deletions

View file

@ -5,7 +5,5 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased] ## [Unreleased]
## [v1.0.0] - 2020-04-28
### Added ### Added
* Make theme standalone. * Making theme standalone.

View file

@ -24,18 +24,7 @@ baseurl = "https://yourdoma.in" # The base url of your Hugo website
title = "Title" # The title of your website title = "Title" # The title of your website
author = "Author" # The author of the website author = "Author" # The author of the website
language = "fr" language = "fr"
theme = "snotra" # The Hugo theme theme = "idunn" # The Hugo theme
```
### Menu
The menu is generated following all the files in the root directory
and the articles in the *blog* directory.
To avoid the *blog* entry to be pluralized,
add the following option to your config file:
```toml
pluralizeListTitles = false
``` ```
### Description ### Description
@ -47,31 +36,18 @@ You can use some parameters to fill meta tags and bases images:
description = "" # Description for the meta tag description = "" # Description for the meta tag
favicon = "" # Favicon URL favicon = "" # Favicon URL
logo = "" # Logo URL logo = "" # Logo URL
keyword = "" # Keywords for the meta tag
``` ```
### Home page ### Colors
The home page use one avatar, the name, one description and a list of social It is possible to basicaly change some colors:
networks.
For the social networks, see *Social Networks* chapter.
```toml ```toml
[params] [params.colors]
author = "Author" # The author of the website font = "black" # General font color, default to black
info = "Your infos" # Displayed under author name background = "white" # General background color, default to white
avatar = "file.png" # Placed in static/images main = "grey" # Theme color, used for footer among others, default to grey
``` font_above = "white" # Used for font above *main* color, default to white
### Twitter:card
Twitter cards are automaticly generated.
If you want tho have the twitter:site meta generated,
add the following option to your config file:
```toml
[params]
twitterUser = "youruser" # Your Twitter account without @
``` ```
### Custom CSS ### Custom CSS
@ -81,18 +57,38 @@ add the following option to your config file:
custom_css = ["style.css"] # Your own css files custom_css = ["style.css"] # Your own css files
``` ```
### Social Networks ### Contact footer
You can also set some of your networks accounts to display on the home page. If you want to have some informations about you in the footer,
Every social network (or not so network) have to be described with thoses you can set it with thoses parameters:
options:
```toml ```toml
[[params.social]] [params.contact]
name = "Title of the entry" # Title, used on hover email = "mail@serve.ur" # The mail of your company
icon = "facebook" # Icon to use phone = "+41 22 123 45 67" # The phone number of your company
weight = 1 # Sort order address = "Your address" # The address of your company
url = "https://www.facebook.com/user" # Link to your account
``` ```
You can also add some non social elements, you only need to have an icon. ### Social Networks
You can also set some of your networks accounts.
Thoses options are availables:
```toml
[params.social]
500px = ""
codepen = ""
facebook = ""
flickr = ""
github = ""
gitlab = ""
instagram = ""
linkedin = ""
mastodon = ""
peertube = ""
pinterest = ""
pixelfed = ""
tumblr = ""
twitter = ""
youtube = ""
```

View file

@ -6,5 +6,19 @@
<h1>{{ .Site.Params.author }}</h1> <h1>{{ .Site.Params.author }}</h1>
<h2>{{ .Site.Params.info }}</h2> <h2>{{ .Site.Params.info }}</h2>
</div> </div>
{{ partial "social.html" . }} {{ with .Site.Params.social }}
<ul id="social">
{{ range sort . "weight" }}
<li class="social-element">
{{ if eq .type "tel" }}
<a href="tel:{{ .url }}" rel="me" aria-label="{{ .name }}" title="{{ .name }}">
{{ else }}
<a href="{{ .url }}" rel="me" aria-label="{{ .name }}" title="{{ .name }}">
{{ end }}
<img class="social-icon" src="svg/{{ .icon }}" alt="{{ .name }}" aria-hidden="true">
</a>
</li>
{{ end }}
</ul>
</div> </div>
{{ end }}

View file

@ -1,22 +1,25 @@
<nav id="navigation"> <nav id="navigation">
<section class="navigation-container"> <section class="navigation-container">
<a id="navigation-title" href="/"> <a id="navigation-title" href="/">
{{ .Site.Title }} {{ .Site.Title }}
</a> </a>
<input type="checkbox" id="menu-toggle" /> <input type="checkbox" id="menu-toggle" />
<label class="menu-button" for="menu-toggle"> <label class="menu-button" for="menu-toggle">
<div class="menu-button-inner"> <div class="menu-button-inner">
<div class="menu-button-image"></div> <div class="menu-button-image"></div>
</div> </div>
</label> </label>
<ul id="navigation-list">
<ul id="navigation-list"> <li class="navigation-item">
{{ range .Site.Home.Pages }} <a href="/blog">Blog</a>
<li class="navigation-item"> </li>
<a href="{{ .Permalink }}">{{ .Name }}</a> <li class="navigation-item">
</li> <a href="/projects">Projets</a>
{{ end }} </li>
</ul> <li class="navigation-item">
<a href="/contact">Contact</a>
</li>
</ul>
</section> </section>
</nav> </nav>

View file

@ -1,8 +1,15 @@
<meta name="twitter:card" content="summary_large_image"/> <meta name="twitter:card" content="summary_large_image"/>
{{ with .Site.Params.twitterUser }} <meta name="twitter:site" content="@{{ .Site.Params.twitterUser }}"/>
<meta name="twitter:site" content="@{{ . }}"/> <meta name="twitter:creator" content="@{{ .Site.Params.twitterUser }}"/>
{{ end }}
{{/*if .Params.images }}
{{ $baseUrl := .Permalink }}
{{ range first 1 .Params.images }}
<meta name="twitter:image" content="{{ $baseUrl }}{{ . }}"/>
{{ end }}
{{ else }}
<meta name="twitter:image" content="{{ .Site.BaseURL }}images/{{ .Site.Params.avatar }}"/>
{{ end */}}
<meta name="twitter:title" content="{{ .Title }}"/> <meta name="twitter:title" content="{{ .Title }}"/>
{{ if .Description }} {{ if .Description }}
<meta name="twitter:description" content="{{ .Description }}"/> <meta name="twitter:description" content="{{ .Description }}"/>

View file

@ -1,11 +0,0 @@
{{ with .Site.Params.social }}
<ul id="social">
{{ range sort . "weight" }}
<li class="social-element">
<a href="{{ safeURL .url }}" rel="me" aria-label="{{ .name }}" title="{{ .name }}">
<img class="social-icon" src="svg/{{ .icon }}.svg" alt="{{ .name }}" aria-hidden="true">
</a>
</li>
{{ end }}
</ul>
{{ end }}

View file

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="12.447" height="16"><path d="M12.386 13.812l-.053.054a7.25 7.25 0 01-2.313 1.563 7.286 7.286 0 01-5.66 0 7.154 7.154 0 01-2.313-1.563 7.115 7.115 0 01-1.562-2.303 7.003 7.003 0 01-.482-1.688c-.036-.25.312-.303.428-.321.277-.045.464-.027.5.178.009.01.009.018.009.036.036.179.125.714.41 1.42a6.05 6.05 0 001.358 2.018 6.327 6.327 0 002.018 1.357 6.331 6.331 0 004.929 0 6.388 6.388 0 002.008-1.357l.054-.054a.209.209 0 01.223-.054c.08.018.179.089.295.196.285.295.223.438.151.518zm-4.214-5.49l-.59.589.563.562c.063.062.179.196-.062.438-.098.098-.197.151-.286.151-.062 0-.116-.027-.17-.089l-.553-.544-.59.589a.191.191 0 01-.133.045c-.08 0-.179-.045-.277-.143l-.018-.018c-.062-.054-.16-.152-.16-.259 0-.054.026-.098.07-.152l.59-.58-.59-.59c-.097-.097-.053-.222.126-.401.107-.107.196-.16.277-.16.044 0 .08.017.116.044l.58.59.58-.58c.099-.099.26-.055.429.115.107.107.223.26.098.393zm4.206.508a5.28 5.28 0 01-.411 2.036 5.296 5.296 0 01-2.795 2.786 5.12 5.12 0 01-2.036.41 5.12 5.12 0 01-2.035-.41 5.296 5.296 0 01-1.67-1.125 5.087 5.087 0 01-1.116-1.661 2.95 2.95 0 01-.134-.357h-.009c-.08-.25.277-.357.384-.393.26-.08.456-.116.536.107.214.571.545 1.125.866 1.491h.009V8.67a3 3 0 01.91-2.071 3.202 3.202 0 012.26-.92c1.75 0 3.17 1.411 3.17 3.143 0 1.75-1.43 3.17-3.17 3.17-.349 0-.608-.027-1-.143-.045-.018-.25-.107-.117-.545.036-.116.143-.455.393-.384.018 0 .456.108.688.108 1.24 0 2.214-.965 2.214-2.197 0-.58-.232-1.125-.643-1.527A2.186 2.186 0 007.11 6.67c-.616 0-1.179.25-1.59.715-.357.401-.571.937-.571 1.428V12.5a4.12 4.12 0 002.16.598c1.144 0 2.25-.455 3.045-1.25a4.257 4.257 0 001.25-3.018 4.249 4.249 0 00-1.259-3.027 4.246 4.246 0 00-3.026-1.25 4.267 4.267 0 00-3.036 1.25c-.009.01-.518.536-.688.777l-.017.018c-.108.152-.206.295-.652.197-.223-.053-.465-.188-.465-.384V.339c0-.16.125-.339.34-.339h7.83c.268 0 .268.375.268.491 0 .125 0 .491-.268.491h-7.24v4.313h.008c.5-.527 1.366-1.08 1.875-1.295a5.346 5.346 0 012.062-.41A5.12 5.12 0 019.172 4a5.296 5.296 0 012.795 2.786c.268.652.41 1.33.41 2.044zM12.1 3.643c.17.151.053.312-.116.509-.107.107-.224.232-.349.232a.192.192 0 01-.142-.062c-.643-.554-1.224-.929-1.849-1.188a6.113 6.113 0 00-2.464-.5c-.759 0-1.59.152-2.34.438-.231.089-.356-.215-.4-.33-.055-.144-.081-.26-.072-.34.017-.089.062-.152.142-.179.733-.32 1.733-.508 2.67-.508.973 0 1.929.196 2.822.571A6.76 6.76 0 0112.1 3.643z"/><path d="M12.386 13.712l-.053.054a7.25 7.25 0 01-2.313 1.563 7.286 7.286 0 01-5.66 0 7.154 7.154 0 01-2.313-1.563 7.115 7.115 0 01-1.562-2.303 7.003 7.003 0 01-.482-1.688c-.036-.25.312-.303.428-.321.277-.045.464-.027.5.178.009.01.009.018.009.036.036.179.125.714.41 1.42a6.05 6.05 0 001.358 2.018 6.327 6.327 0 002.018 1.357 6.331 6.331 0 004.929 0 6.388 6.388 0 002.008-1.357l.054-.054a.209.209 0 01.223-.054c.08.018.179.089.295.196.285.295.223.438.151.518zm-4.214-5.49l-.59.589.563.562c.063.062.179.196-.062.438-.098.098-.197.151-.286.151-.062 0-.116-.027-.17-.089l-.553-.544-.59.589a.191.191 0 01-.133.045c-.08 0-.179-.045-.277-.143l-.018-.018c-.062-.054-.16-.152-.16-.259 0-.054.026-.098.07-.152l.59-.58-.59-.59c-.097-.097-.053-.222.126-.401.107-.107.196-.16.277-.16.044 0 .08.017.116.044l.58.59.58-.58c.099-.099.26-.055.429.115.107.107.223.26.098.393zm4.206.508a5.28 5.28 0 01-.411 2.036 5.296 5.296 0 01-2.795 2.786 5.12 5.12 0 01-2.036.41 5.12 5.12 0 01-2.035-.41 5.296 5.296 0 01-1.67-1.125 5.087 5.087 0 01-1.116-1.661 2.95 2.95 0 01-.134-.357h-.009c-.08-.25.277-.357.384-.393.26-.08.456-.116.536.107.214.571.545 1.125.866 1.491h.009V8.57a3 3 0 01.91-2.071 3.202 3.202 0 012.26-.92c1.75 0 3.17 1.411 3.17 3.143 0 1.75-1.43 3.17-3.17 3.17-.349 0-.608-.027-1-.143-.045-.018-.25-.107-.117-.545.036-.116.143-.455.393-.384.018 0 .456.108.688.108 1.24 0 2.214-.965 2.214-2.197 0-.58-.232-1.125-.643-1.527A2.186 2.186 0 007.11 6.57c-.616 0-1.179.25-1.59.715-.357.401-.571.937-.571 1.428V12.4a4.12 4.12 0 002.16.598c1.144 0 2.25-.455 3.045-1.25a4.257 4.257 0 001.25-3.018 4.249 4.249 0 00-1.259-3.027 4.246 4.246 0 00-3.026-1.25 4.267 4.267 0 00-3.036 1.25c-.009.01-.518.536-.688.777l-.017.018c-.108.152-.206.295-.652.197-.223-.053-.465-.188-.465-.384V.239c0-.16.125-.339.34-.339h7.83c.268 0 .268.375.268.491 0 .125 0 .491-.268.491h-7.24v4.313h.008c.5-.527 1.366-1.08 1.875-1.295a5.346 5.346 0 012.062-.41 5.12 5.12 0 012.036.41 5.296 5.296 0 012.795 2.786c.268.652.41 1.33.41 2.044zM12.1 3.543c.17.151.053.312-.116.509-.107.107-.224.232-.349.232a.192.192 0 01-.142-.062c-.643-.554-1.224-.929-1.849-1.188a6.113 6.113 0 00-2.464-.5c-.759 0-1.59.152-2.34.438-.231.089-.356-.215-.4-.33-.055-.144-.081-.26-.072-.34.017-.089.062-.152.142-.179.733-.32 1.733-.508 2.67-.508.973 0 1.929.196 2.822.571A6.76 6.76 0 0112.1 3.543z" fill="#efefef"/></svg>

Before

Width:  |  Height:  |  Size: 4.6 KiB

View file

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><path d="M1.929 10.438l5.383 3.589V10.82L4.33 8.831zm-.554-1.286L3.098 8 1.375 6.848zm7.313 4.875l5.383-3.59L11.67 8.83l-2.982 1.991zM8 9.625L10.429 8 8 6.375 5.571 8zM4.33 7.17l2.982-1.991V1.973L1.93 5.563zm8.572.83l1.723 1.152V6.848zm-1.232-.83l2.401-1.607-5.383-3.59V5.18zM16 5.563v4.875a.699.699 0 01-.304.57l-7.312 4.876A.742.742 0 018 16a.746.746 0 01-.384-.116L.304 11.009A.699.699 0 010 10.437V5.564c0-.224.116-.447.304-.572L7.616.116A.742.742 0 018 0c.134 0 .268.045.384.116l7.312 4.875a.699.699 0 01.304.572z" fill="#efefef"/></svg>

Before

Width:  |  Height:  |  Size: 605 B

View file

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><path d="M13 0a3 3 0 013 3v10a3 3 0 01-3 3H3a3 3 0 01-3-3V3a3 3 0 013-3zM7.27 8a2.21 2.21 0 00-4.416 0 2.21 2.21 0 004.417 0zm5.876 0a2.21 2.21 0 00-4.417 0 2.21 2.21 0 004.417 0z" fill="#efefef"/></svg>

Before

Width:  |  Height:  |  Size: 266 B

View file

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="15.607"><path d="M8 0a8.002 8.002 0 012.531 15.594c-.406.073-.552-.177-.552-.386 0-.26.01-1.125.01-2.198 0-.75-.25-1.229-.541-1.479 1.781-.198 3.656-.875 3.656-3.948 0-.875-.312-1.583-.823-2.146.084-.208.354-1.02-.083-2.125-.667-.208-2.198.823-2.198.823a7.531 7.531 0 00-4 0s-1.531-1.03-2.198-.823c-.437 1.105-.167 1.917-.083 2.126a3.099 3.099 0 00-.823 2.145c0 3.063 1.864 3.75 3.646 3.948-.23.209-.438.563-.51 1.073-.46.209-1.626.563-2.324-.666-.437-.76-1.229-.823-1.229-.823-.781-.01-.052.49-.052.49.52.239.886 1.166.886 1.166.468 1.427 2.697.948 2.697.948 0 .666.01 1.291.01 1.49 0 .208-.145.458-.551.385A8.002 8.002 0 018 0zM3.031 11.49c.021-.042-.01-.094-.073-.125-.062-.021-.114-.01-.135.02-.02.043.01.095.073.126.052.03.114.02.135-.021zm.323.354c.042-.031.031-.104-.02-.167-.053-.052-.126-.073-.167-.03-.042.03-.032.103.02.166.053.052.126.073.167.03zm.313.469c.052-.043.052-.126 0-.198-.042-.073-.125-.105-.177-.062-.052.03-.052.114 0 .187s.135.104.177.073zm.437.437c.042-.042.021-.135-.042-.198-.072-.073-.166-.083-.208-.03-.052.041-.031.135.042.197.073.073.167.083.208.031zm.594.26c.02-.062-.042-.135-.136-.166-.083-.021-.177.01-.197.073-.021.062.041.135.135.156.083.031.177 0 .198-.062zm.656.052c0-.073-.083-.125-.177-.114-.094 0-.167.052-.167.114 0 .073.073.125.178.115.093 0 .166-.052.166-.115zm.604-.104c-.01-.062-.093-.104-.187-.094-.094.021-.156.083-.146.156.01.062.094.105.188.083.093-.02.156-.083.145-.145z" fill="#efefef"/></svg>

Before

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="14.73"><path d="M.93 5.67L8 14.73.252 9.107a.623.623 0 01-.223-.688zm4.124 0h5.892L8 14.73zM3.287.208L5.054 5.67H.931L2.698.208a.313.313 0 01.59 0zM15.07 5.67l.902 2.75a.623.623 0 01-.223.687L8 14.73zm0 0h-4.123L12.713.208a.313.313 0 01.589 0z" fill="#efefef"/></svg>

Before

Width:  |  Height:  |  Size: 326 B

View file

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><path d="M10.666 8A2.672 2.672 0 008 5.334 2.672 2.672 0 005.334 8 2.672 2.672 0 008 10.666 2.672 2.672 0 0010.666 8zm1.438 0A4.099 4.099 0 018 12.104 4.099 4.099 0 013.896 8 4.099 4.099 0 018 3.896 4.099 4.099 0 0112.104 8zm1.125-4.27a.956.956 0 01-.959.958.956.956 0 01-.958-.958c0-.532.427-.959.958-.959.532 0 .959.427.959.959zM8 1.438c-1.167 0-3.666-.094-4.718.323a2.558 2.558 0 00-.917.604 2.559 2.559 0 00-.604.917C1.344 4.334 1.438 6.833 1.438 8c0 1.167-.094 3.666.323 4.718.146.365.323.636.604.917.281.281.552.458.917.604 1.052.417 3.551.323 4.718.323 1.167 0 3.666.094 4.718-.323.365-.146.636-.323.917-.604.281-.281.458-.552.604-.917.417-1.052.323-3.551.323-4.718 0-1.167.094-3.666-.323-4.718a2.559 2.559 0 00-.604-.917 2.558 2.558 0 00-.917-.604C11.666 1.344 9.167 1.438 8 1.438zM16 8c0 1.104.01 2.198-.053 3.302-.062 1.281-.354 2.416-1.291 3.354-.938.937-2.073 1.229-3.354 1.291C10.198 16.01 9.104 16 8 16s-2.198.011-3.302-.052c-1.281-.062-2.416-.354-3.354-1.291-.937-.938-1.229-2.073-1.291-3.354C-.01 10.198 0 9.104 0 8s-.01-2.198.052-3.302c.062-1.281.354-2.416 1.291-3.354C2.282.407 3.417.115 4.698.053 5.802-.01 6.896 0 8 0s2.198-.011 3.302.052c1.281.062 2.416.354 3.354 1.291.937.938 1.229 2.073 1.291 3.354C16.01 5.802 16 6.896 16 8z" fill="#efefef"/></svg>

Before

Width:  |  Height:  |  Size: 1.3 KiB

View file

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="12"><defs><filter id="a" x="-.014" width="1.028" y="-.011" height="1.021" color-interpolation-filters="sRGB"><feGaussianBlur stdDeviation=".07"/></filter></defs><path d="M0 0v8l6-4zm6 4v8l6-4zM0 8v8l6-3.999z" filter="url(#a)" fill="#efefef"/></svg>

Before

Width:  |  Height:  |  Size: 307 B

View file

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><path d="M16 8c0 4.417-3.583 8-8 8a7.83 7.83 0 01-2.27-.333c.301-.48.645-1.094.812-1.709 0 0 .093-.354.562-2.198.271.532 1.084 1 1.948 1 2.573 0 4.323-2.343 4.323-5.49 0-2.364-2.01-4.583-5.073-4.583-3.792 0-5.708 2.73-5.708 5 0 1.375.52 2.605 1.635 3.063.177.073.344 0 .396-.208.042-.136.125-.49.167-.636.052-.208.03-.27-.115-.448-.323-.385-.531-.875-.531-1.573 0-2.02 1.51-3.833 3.937-3.833 2.146 0 3.334 1.313 3.334 3.073 0 2.302-1.021 4.25-2.542 4.25-.833 0-1.458-.688-1.26-1.542.24-1.01.708-2.104.708-2.833 0-.656-.354-1.208-1.083-1.208-.855 0-1.542.885-1.542 2.073 0 0 0 .76.26 1.27-.875 3.709-1.03 4.355-1.03 4.355-.147.604-.157 1.28-.136 1.843A8.002 8.002 0 018 0c4.417 0 8 3.583 8 8z" fill="#efefef"/></svg>

Before

Width:  |  Height:  |  Size: 778 B

View file

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="9.192" height="16"><path d="M8.423 12.778l.769 2.279c-.289.432-1.596.923-2.77.942-3.49.058-4.807-2.48-4.807-4.269V6.5H0V4.432C2.423 3.557 3.01 1.365 3.144.115 3.154.038 3.221 0 3.259 0h2.346v4.077h3.202V6.5H5.596v4.98c0 .673.25 1.606 1.538 1.577.423-.01.99-.135 1.289-.279z" fill="#efefef"/></svg>

Before

Width:  |  Height:  |  Size: 344 B

View file

@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="13.232" height="16"><path d="M8.429 11.107v1.884c0 .402-.117.598-.349.598-.134 0-.268-.062-.401-.196v-2.688c.133-.134.267-.196.401-.196.232 0 .349.205.349.598zm3.017.01v.41h-.803v-.41c0-.402.134-.607.402-.607.267 0 .401.205.401.607zM2.821 9.171h.956v-.84H.99v.84h.938v5.08h.892zm2.572 5.08h.795v-4.41h-.795v3.374c-.179.25-.348.375-.51.375-.106 0-.169-.062-.187-.187-.008-.027-.008-.125-.008-.313V9.84h-.795v3.491c0 .313.027.518.071.652.072.223.26.33.518.33.286 0 .59-.178.91-.544zm3.83-1.321v-1.76c0-.41-.018-.705-.08-.883-.098-.33-.322-.5-.634-.5-.295 0-.572.16-.83.482V8.33h-.795v5.92h.795v-.429c.267.33.544.492.83.492.312 0 .536-.17.634-.492.062-.187.08-.482.08-.892zm3.018-.09v-.116h-.812c0 .322-.01.5-.018.545-.045.214-.161.322-.357.322-.277 0-.411-.206-.411-.616v-.777h1.598v-.92c0-.473-.08-.812-.241-1.036-.232-.303-.545-.455-.946-.455-.411 0-.724.152-.956.455-.17.224-.25.563-.25 1.036v1.545c0 .473.09.821.26 1.035.231.304.544.456.963.456.42 0 .75-.16.965-.473.098-.143.17-.304.187-.483.018-.08.018-.259.018-.517zM6.813 4.69V2.814c0-.41-.117-.616-.384-.616-.26 0-.384.205-.384.616v1.875c0 .41.125.625.384.625.267 0 .383-.214.383-.625zm6.42 6.705c0 1.027-.01 2.125-.233 3.125-.17.706-.741 1.223-1.429 1.295C9.93 16 8.268 16 6.616 16c-1.652 0-3.312 0-4.955-.188-.688-.07-1.268-.589-1.429-1.294C0 13.518 0 12.42 0 11.393c0-1.036.009-2.125.232-3.125.17-.706.741-1.223 1.438-1.304 1.634-.178 3.294-.178 4.946-.178 1.652 0 3.313 0 4.955.178A1.68 1.68 0 0113 8.268c.232 1 .232 2.09.232 3.125zM4.32 0h.911l-1.08 3.563v2.42h-.893v-2.42C3.179 3.124 3 2.5 2.714 1.67 2.518 1.116 2.321.554 2.134 0h.946l.634 2.348zm3.304 2.973v1.563c0 .473-.08.83-.25 1.053-.223.304-.536.456-.946.456-.402 0-.715-.152-.938-.456-.17-.232-.25-.58-.25-1.053V2.973c0-.473.08-.821.25-1.044.223-.304.536-.456.938-.456.41 0 .723.152.946.456.17.223.25.571.25 1.044zm2.991-1.446v4.455h-.812v-.49c-.322.374-.625.553-.92.553-.259 0-.447-.107-.527-.33-.044-.135-.071-.349-.071-.67V1.527h.812v3.277c0 .187 0 .294.01.312.017.125.08.196.187.196.16 0 .33-.125.509-.383V1.527z" fill="#efefef"/></svg>

Before

Width:  |  Height:  |  Size: 2.1 KiB