REMOVE big fontawesome gitsubmodule for small icon selection, ADD leave date for teammembers

This commit is contained in:
Hoernschen 2023-09-25 13:34:46 +02:00
parent 1e6160b1b1
commit 80feba5acc
Signed by: hoernschen
GPG key ID: 37591FAF4E6D3462
16 changed files with 1315 additions and 32 deletions

0
.gitmodules vendored
View file

View file

@ -2,7 +2,7 @@ $font: {{ .Param "font" }};
@font-face { @font-face {
font-family: $font; font-family: $font;
src: url("/fonts/#{$font}/#{$font}-Regular.ttf") format('truetype'); src: url("/fonts/#{$font}/#{$font}-Regular.woff2") format('woff2');
font-weight: 400; font-weight: 400;
font-style: normal; font-style: normal;
} }
@ -210,13 +210,13 @@ button {
.team-list a { .team-list a {
color: inherit; color: inherit;
margin: 0 auto;
} }
.teammember { .teammember {
display: inline-block; display: inline-block;
align-items: center; align-items: center;
text-align: center; text-align: center;
margin: 0 auto;
padding: 1rem; padding: 1rem;
} }
@ -267,7 +267,8 @@ button {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
color: #333; color: #333;
margin-top: -0.5rem margin-top: -0.5rem;
padding-block-end: 0.25rem;
} }
.teammember-header-social-media a { .teammember-header-social-media a {

View file

@ -35,7 +35,7 @@
{{ with .Site.Params.tracking }} {{ with .Site.Params.tracking }}
<script src="{{ . }}"></script> <script src="{{ . }}"></script>
{{ end }} {{ end }}
<link rel="stylesheet" type="text/css" href="/Font-Awesome/css/all.min.css"> <link rel="stylesheet" type="text/css" href="/icons/fontawesome.css">
{{ $template := resources.Get "scss/index.scss" }} {{ $template := resources.Get "scss/index.scss" }}
{{ if $template }} {{ if $template }}
{{ $index := $template | resources.ExecuteAsTemplate "css/index.scss" . | resources.ToCSS (dict "outputStyle" "compressed") | fingerprint }} {{ $index := $template | resources.ExecuteAsTemplate "css/index.scss" . | resources.ToCSS (dict "outputStyle" "compressed") | fingerprint }}

View file

@ -10,9 +10,9 @@
<div class="social-media-footer"> <div class="social-media-footer">
<span> <span>
{{- range $social}} {{- range $social}}
<a href="{{ .url }}"><i class="fab fa-{{ .type }}"></i></a> <a href="{{ .url }}"><i class="icon-{{ .type }}"></i></a>
{{- end }} {{- end }}
<a href="/posts/index.xml"><i class="fas fa-rss"></i></a> <a href="/posts/index.xml"><i class="icon-rss"></i></a>
</span> </span>
</div> </div>
<div> <div>
@ -26,5 +26,5 @@
© {{ dateFormat "2006" now }} {{ $footer.copyright }}</a> © {{ dateFormat "2006" now }} {{ $footer.copyright }}</a>
</div> </div>
</footer> </footer>
<a class="totop hide" id="totop" href="#"><i class="fas fa-chevron-up"></i></a> <a class="totop hide" id="totop" href="#"><i class="icon-angle-up"></i></a>
<script src="/js/totop.js"></script> <script src="/js/totop.js"></script>

View file

@ -19,7 +19,7 @@
{{ if .links }} {{ if .links }}
<div class="header-item dropdown"> <div class="header-item dropdown">
<button class="dropbtn">{{ .text }} <button class="dropbtn">{{ .text }}
<i class="fas fa-caret-down"></i> <i class="icon-caret-down"></i>
</button> </button>
<div class="dropdown-content"> <div class="dropdown-content">
{{- range .links}} {{- range .links}}

View file

@ -24,7 +24,7 @@
<img class="cardImage {{ if eq .image.cover false }} noCover {{ end }}" alt="{{ .image.alt }}" src="{{ .image.url }}" /> <img class="cardImage {{ if eq .image.cover false }} noCover {{ end }}" alt="{{ .image.alt }}" src="{{ .image.url }}" />
{{ else if .icon }} {{ else if .icon }}
<div class="cardImage"> <div class="cardImage">
<i class="fas fa-{{ .icon }} cardIcon"></i> <i class="icon-{{ .icon }} cardIcon"></i>
</div> </div>
{{ else }} {{ else }}
<img class="cardImage" alt="default image" src="{{ $defaultimage }}" /> <img class="cardImage" alt="default image" src="{{ $defaultimage }}" />

View file

@ -26,10 +26,10 @@
<img src="{{ $slide }}" alt="{{ $index }}"> <img src="{{ $slide }}" alt="{{ $index }}">
{{ if gt $length 1}} {{ if gt $length 1}}
<span class="slider-navigation-right" onclick="scrollToNextSlideNr({{$index}})"> <span class="slider-navigation-right" onclick="scrollToNextSlideNr({{$index}})">
<i class="fas fa-angle-right"></i> <i class="icon-angle-right"></i>
</span> </span>
<span class="slider-navigation-left" onclick="scrollToPrevSlideNr({{$index}})"> <span class="slider-navigation-left" onclick="scrollToPrevSlideNr({{$index}})">
<i class="fas fa-angle-left"></i> <i class="icon-angle-left"></i>
</span> </span>
{{ end }} {{ end }}
</div> </div>

View file

@ -15,7 +15,7 @@
<div class="divider"></div> <div class="divider"></div>
</div> </div>
<div class="team-list"> <div class="team-list">
{{- range first 4 $pages.ByDate }} {{- range first 4 ((where $pages "Params.leaveDate" "==" nil).ByParam "startDate") }}
<a href="{{.Permalink}}"> <a href="{{.Permalink}}">
<div class="teammember"> <div class="teammember">
{{ if .Params.image }} {{ if .Params.image }}
@ -30,10 +30,10 @@
<div class="social-media"> <div class="social-media">
<span> <span>
{{- range .Params.social}} {{- range .Params.social}}
<a href="{{ .url }}"><i class="fab fa-{{ .type }}"></i></a> <a href="{{ .url }}"><i class="icon-{{ .type }}"></i></a>
{{- end}} {{- end}}
{{if .Params.mail}} {{if .Params.mail}}
<a href="mailto:{{ .Params.mail }}"><i class="fas fa-at"></i></a> <a href="mailto:{{ .Params.mail }}"><i class="icon-at"></i></a>
{{end}} {{end}}
</span> </span>
</div> </div>

View file

@ -75,10 +75,10 @@
<div class="social-media"> <div class="social-media">
<span> <span>
{{- range .Params.social}} {{- range .Params.social}}
<a href="{{ .url }}"><i class="fab fa-{{ .type }}"></i></a> <a href="{{ .url }}"><i class="icon-{{ .type }}"></i></a>
{{- end}} {{- end}}
{{if .Params.mail}} {{if .Params.mail}}
<a href="mailto:{{ .Params.mail }}"><i class="fas fa-at"></i></a> <a href="mailto:{{ .Params.mail }}"><i class="icon-at"></i></a>
{{end}} {{end}}
</span> </span>
</div> </div>

View file

@ -8,7 +8,7 @@
{{.Content}} {{.Content}}
</article> </article>
<div class="team-list"> <div class="team-list">
{{ range .Pages.ByDate }} {{ range (where .Pages "Params.leaveDate" "==" nil).ByParam "startDate" }}
<a href="{{.Permalink}}"> <a href="{{.Permalink}}">
<div class="teammember"> <div class="teammember">
{{ if .Params.image }} {{ if .Params.image }}
@ -23,10 +23,10 @@
<div class="social-media"> <div class="social-media">
<span> <span>
{{- range .Params.social}} {{- range .Params.social}}
<a href="{{ .url }}"><i class="fab fa-{{ .type }}"></i></a> <a href="{{ .url }}"><i class="icon-{{ .type }}"></i></a>
{{- end}} {{- end}}
{{if .Params.mail}} {{if .Params.mail}}
<a href="mailto:{{ .Params.mail }}"><i class="fas fa-at"></i></a> <a href="mailto:{{ .Params.mail }}"><i class="icon-at"></i></a>
{{end}} {{end}}
</span> </span>
</div> </div>

View file

@ -4,19 +4,24 @@
{{ with .Params.image }} {{ with .Params.image }}
<img class="teammember-header-avatar" src="{{ . }}" alt="Avatar"> <img class="teammember-header-avatar" src="{{ . }}" alt="Avatar">
{{ end }} {{ end }}
<div class="teammember-header-title"> <div>
<h1 class="content-title">{{ .Params.name }}</h1> <div class="teammember-header-title">
<div class="teammember-header-social-media"> <h1 class="content-title">{{ .Params.name }}</h1>
<span> <div class="teammember-header-social-media">
{{- range .Params.social}} <span>
<a href="{{ .url }}"><i class="fab fa-{{ .type }}"></i></a> {{- range .Params.social}}
{{- end}} <a href="{{ .url }}"><i class="icon-{{ .type }}"></i></a>
{{if .Params.mail}} {{- end}}
<a href="mailto:{{ .Params.mail }}"><i class="fas fa-at"></i></a> {{if .Params.mail}}
{{end}} <a href="mailto:{{ .Params.mail }}"><i class="icon-at"></i></a>
</span> {{end}}
</span>
</div>
<div class="divider"></div>
</div> </div>
<div class="divider"></div> {{ with .Params.leaveDate }}
<p>Bis zum {{ . | time.Format "02.01.2006" }} bei uns tätig</p>
{{ end }}
</div> </div>
</div> </div>
{{ .Content }} {{ .Content }}
@ -35,7 +40,7 @@
<img class="cardImage" src="{{ .Site.Params.defaultimage }}" alt="Default Image" /> <img class="cardImage" src="{{ .Site.Params.defaultimage }}" alt="Default Image" />
{{ end }} {{ end }}
<div class="cardTitle">{{.Title}}</div> <div class="cardTitle">{{.Title}}</div>
<div class="cardDescription">{{ .Content | safeHTML | truncate 250 }}</div> <div class="cardDescription">{{ .Summary | safeHTML | truncate 320 }}</div>
<div class="cardDetail">{{.Date.Format "02.01.2006"}} | {{.ReadingTime}} Minuten</div> <div class="cardDetail">{{.Date.Format "02.01.2006"}} | {{.ReadingTime}} Minuten</div>
</div> </div>
</a> </a>

957
static/icons/fontawesome.css vendored Normal file
View file

@ -0,0 +1,957 @@
@font-face {
font-family: 'fontawesome';
src: url('fontawesome.eot?80pvic');
src: url('fontawesome.eot?80pvic#iefix') format('embedded-opentype'),
url('fontawesome.ttf?80pvic') format('truetype'),
url('fontawesome.woff?80pvic') format('woff'),
url('fontawesome.svg?80pvic#icomoon') format('svg');
font-weight: normal;
font-style: normal;
font-display: block;
}
[class^="icon-"], [class*=" icon-"] {
/* use !important to prevent issues with browser extensions that change fonts */
font-family: 'fontawesome' !important;
speak: never;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-store-alt-slash:before {
content: "\e070";
}
.icon-store-slash:before {
content: "\e071";
}
.icon-glass-martini:before {
content: "\f000";
}
.icon-music:before {
content: "\f001";
}
.icon-search:before {
content: "\f002";
}
.icon-heart:before {
content: "\f004";
}
.icon-star:before {
content: "\f005";
}
.icon-user:before {
content: "\f007";
}
.icon-film:before {
content: "\f008";
}
.icon-th-large:before {
content: "\f009";
}
.icon-th:before {
content: "\f00a";
}
.icon-th-list:before {
content: "\f00b";
}
.icon-check:before {
content: "\f00c";
}
.icon-times:before {
content: "\f00d";
}
.icon-search-plus:before {
content: "\f00e";
}
.icon-search-minus:before {
content: "\f010";
}
.icon-power-off:before {
content: "\f011";
}
.icon-signal:before {
content: "\f012";
}
.icon-cog:before {
content: "\f013";
}
.icon-home:before {
content: "\f015";
}
.icon-clock:before {
content: "\f017";
}
.icon-road:before {
content: "\f018";
}
.icon-download:before {
content: "\f019";
}
.icon-inbox:before {
content: "\f01c";
}
.icon-redo:before {
content: "\f01e";
}
.icon-sync:before {
content: "\f021";
}
.icon-list-alt:before {
content: "\f022";
}
.icon-lock:before {
content: "\f023";
}
.icon-flag:before {
content: "\f024";
}
.icon-headphones:before {
content: "\f025";
}
.icon-volume-off:before {
content: "\f026";
}
.icon-volume-down:before {
content: "\f027";
}
.icon-volume-up:before {
content: "\f028";
}
.icon-qrcode:before {
content: "\f029";
}
.icon-barcode:before {
content: "\f02a";
}
.icon-tag:before {
content: "\f02b";
}
.icon-tags:before {
content: "\f02c";
}
.icon-book:before {
content: "\f02d";
}
.icon-bookmark:before {
content: "\f02e";
}
.icon-print:before {
content: "\f02f";
}
.icon-camera:before {
content: "\f030";
}
.icon-video:before {
content: "\f03d";
}
.icon-image:before {
content: "\f03e";
}
.icon-map-marker:before {
content: "\f041";
}
.icon-adjust:before {
content: "\f042";
}
.icon-tint:before {
content: "\f043";
}
.icon-edit:before {
content: "\f044";
}
.icon-plus-circle:before {
content: "\f055";
}
.icon-minus-circle:before {
content: "\f056";
}
.icon-times-circle:before {
content: "\f057";
}
.icon-check-circle:before {
content: "\f058";
}
.icon-arrow-left:before {
content: "\f060";
}
.icon-arrow-right:before {
content: "\f061";
}
.icon-arrow-up:before {
content: "\f062";
}
.icon-arrow-down:before {
content: "\f063";
}
.icon-share:before {
content: "\f064";
}
.icon-expand:before {
content: "\f065";
}
.icon-compress:before {
content: "\f066";
}
.icon-plus:before {
content: "\f067";
}
.icon-minus:before {
content: "\f068";
}
.icon-asterisk:before {
content: "\f069";
}
.icon-exclamation-circle:before {
content: "\f06a";
}
.icon-gift:before {
content: "\f06b";
}
.icon-leaf:before {
content: "\f06c";
}
.icon-eye:before {
content: "\f06e";
}
.icon-eye-slash:before {
content: "\f070";
}
.icon-exclamation-triangle:before {
content: "\f071";
}
.icon-calendar-alt:before {
content: "\f073";
}
.icon-retweet:before {
content: "\f079";
}
.icon-shopping-cart:before {
content: "\f07a";
}
.icon-folder:before {
content: "\f07b";
}
.icon-folder-open:before {
content: "\f07c";
}
.icon-chart-bar:before {
content: "\f080";
}
.icon-credit-card:before {
content: "\f09d";
}
.icon-rss:before {
content: "\f09e";
}
.icon-bullhorn:before {
content: "\f0a1";
}
.icon-arrow-circle-left:before {
content: "\f0a8";
}
.icon-arrow-circle-right:before {
content: "\f0a9";
}
.icon-arrow-circle-up:before {
content: "\f0aa";
}
.icon-arrow-circle-down:before {
content: "\f0ab";
}
.icon-globe:before {
content: "\f0ac";
}
.icon-wrench:before {
content: "\f0ad";
}
.icon-tasks:before {
content: "\f0ae";
}
.icon-filter:before {
content: "\f0b0";
}
.icon-arrows-alt:before {
content: "\f0b2";
}
.icon-users:before {
content: "\f0c0";
}
.icon-link:before {
content: "\f0c1";
}
.icon-cloud:before {
content: "\f0c2";
}
.icon-flask:before {
content: "\f0c3";
}
.icon-paperclip:before {
content: "\f0c6";
}
.icon-save:before {
content: "\f0c7";
}
.icon-magic:before {
content: "\f0d0";
}
.icon-truck:before {
content: "\f0d1";
}
.icon-money-bill:before {
content: "\f0d6";
}
.icon-caret-down:before {
content: "\f0d7";
}
.icon-caret-up:before {
content: "\f0d8";
}
.icon-caret-left:before {
content: "\f0d9";
}
.icon-caret-right:before {
content: "\f0da";
}
.icon-columns:before {
content: "\f0db";
}
.icon-sort:before {
content: "\f0dc";
}
.icon-sort-down:before {
content: "\f0dd";
}
.icon-sort-up:before {
content: "\f0de";
}
.icon-envelope:before {
content: "\f0e0";
}
.icon-undo:before {
content: "\f0e2";
}
.icon-bolt:before {
content: "\f0e7";
}
.icon-umbrella:before {
content: "\f0e9";
}
.icon-lightbulb:before {
content: "\f0eb";
}
.icon-bell:before {
content: "\f0f3";
}
.icon-coffee:before {
content: "\f0f4";
}
.icon-angle-double-left:before {
content: "\f100";
}
.icon-angle-double-right:before {
content: "\f101";
}
.icon-angle-double-up:before {
content: "\f102";
}
.icon-angle-double-down:before {
content: "\f103";
}
.icon-angle-left:before {
content: "\f104";
}
.icon-angle-right:before {
content: "\f105";
}
.icon-angle-up:before {
content: "\f106";
}
.icon-angle-down:before {
content: "\f107";
}
.icon-desktop:before {
content: "\f108";
}
.icon-laptop:before {
content: "\f109";
}
.icon-tablet:before {
content: "\f10a";
}
.icon-mobile:before {
content: "\f10b";
}
.icon-quote-left:before {
content: "\f10d";
}
.icon-quote-right:before {
content: "\f10e";
}
.icon-smile:before {
content: "\f118";
}
.icon-frown:before {
content: "\f119";
}
.icon-meh:before {
content: "\f11a";
}
.icon-terminal:before {
content: "\f120";
}
.icon-code:before {
content: "\f121";
}
.icon-question:before {
content: "\f128";
}
.icon-info:before {
content: "\f129";
}
.icon-exclamation:before {
content: "\f12a";
}
.icon-anchor:before {
content: "\f13d";
}
.icon-unlock-alt:before {
content: "\f13e";
}
.icon-ellipsis-h:before {
content: "\f141";
}
.icon-ellipsis-v:before {
content: "\f142";
}
.icon-compass:before {
content: "\f14e";
}
.icon-file:before {
content: "\f15b";
}
.icon-file-alt:before {
content: "\f15c";
}
.icon-thumbs-up:before {
content: "\f164";
}
.icon-thumbs-down:before {
content: "\f165";
}
.icon-female:before {
content: "\f182";
}
.icon-male:before {
content: "\f183";
}
.icon-bug:before {
content: "\f188";
}
.icon-university:before {
content: "\f19c";
}
.icon-building:before {
content: "\f1ad";
}
.icon-child:before {
content: "\f1ae";
}
.icon-car:before {
content: "\f1b9";
}
.icon-taxi:before {
content: "\f1ba";
}
.icon-database:before {
content: "\f1c0";
}
.icon-file-pdf:before {
content: "\f1c1";
}
.icon-file-word:before {
content: "\f1c2";
}
.icon-file-excel:before {
content: "\f1c3";
}
.icon-file-powerpoint:before {
content: "\f1c4";
}
.icon-file-image:before {
content: "\f1c5";
}
.icon-file-archive:before {
content: "\f1c6";
}
.icon-file-audio:before {
content: "\f1c7";
}
.icon-file-video:before {
content: "\f1c8";
}
.icon-file-code:before {
content: "\f1c9";
}
.icon-paper-plane:before {
content: "\f1d8";
}
.icon-sliders-h:before {
content: "\f1de";
}
.icon-share-alt:before {
content: "\f1e0";
}
.icon-wifi:before {
content: "\f1eb";
}
.icon-bell-slash:before {
content: "\f1f6";
}
.icon-trash:before {
content: "\f1f8";
}
.icon-at:before {
content: "\f1fa";
}
.icon-chart-area:before {
content: "\f1fe";
}
.icon-chart-pie:before {
content: "\f200";
}
.icon-chart-line:before {
content: "\f201";
}
.icon-toggle-off:before {
content: "\f204";
}
.icon-toggle-on:before {
content: "\f205";
}
.icon-closed-captioning:before {
content: "\f20a";
}
.icon-cart-plus:before {
content: "\f217";
}
.icon-cart-arrow-down:before {
content: "\f218";
}
.icon-sticky-note:before {
content: "\f249";
}
.icon-clone:before {
content: "\f24d";
}
.icon-hourglass-start:before {
content: "\f251";
}
.icon-hourglass-half:before {
content: "\f252";
}
.icon-hourglass-end:before {
content: "\f253";
}
.icon-hourglass:before {
content: "\f254";
}
.icon-tv:before {
content: "\f26c";
}
.icon-industry:before {
content: "\f275";
}
.icon-map-signs:before {
content: "\f277";
}
.icon-map:before {
content: "\f279";
}
.icon-shopping-bag:before {
content: "\f290";
}
.icon-shopping-basket:before {
content: "\f291";
}
.icon-universal-access:before {
content: "\f29a";
}
.icon-blind:before {
content: "\f29d";
}
.icon-handshake:before {
content: "\f2b5";
}
.icon-address-book:before {
content: "\f2b9";
}
.icon-address-card:before {
content: "\f2bb";
}
.icon-user-circle:before {
content: "\f2bd";
}
.icon-id-badge:before {
content: "\f2c1";
}
.icon-id-card:before {
content: "\f2c2";
}
.icon-podcast:before {
content: "\f2ce";
}
.icon-snowflake:before {
content: "\f2dc";
}
.icon-undo-alt:before {
content: "\f2ea";
}
.icon-trash-alt:before {
content: "\f2ed";
}
.icon-sync-alt:before {
content: "\f2f1";
}
.icon-sign-out-alt:before {
content: "\f2f5";
}
.icon-sign-in-alt:before {
content: "\f2f6";
}
.icon-redo-alt:before {
content: "\f2f9";
}
.icon-map-marker-alt:before {
content: "\f3c5";
}
.icon-microphone-alt:before {
content: "\f3c9";
}
.icon-shield-alt:before {
content: "\f3ed";
}
.icon-user-alt:before {
content: "\f406";
}
.icon-box:before {
content: "\f466";
}
.icon-clipboard-check:before {
content: "\f46c";
}
.icon-clipboard-list:before {
content: "\f46d";
}
.icon-comment-dots:before {
content: "\f4ad";
}
.icon-dove:before {
content: "\f4ba";
}
.icon-hand-holding:before {
content: "\f4bd";
}
.icon-piggy-bank:before {
content: "\f4d3";
}
.icon-seedling:before {
content: "\f4d8";
}
.icon-user-alt-slash:before {
content: "\f4fa";
}
.icon-user-astronaut:before {
content: "\f4fb";
}
.icon-user-check:before {
content: "\f4fc";
}
.icon-user-clock:before {
content: "\f4fd";
}
.icon-user-cog:before {
content: "\f4fe";
}
.icon-user-edit:before {
content: "\f4ff";
}
.icon-user-friends:before {
content: "\f500";
}
.icon-user-graduate:before {
content: "\f501";
}
.icon-user-lock:before {
content: "\f502";
}
.icon-user-minus:before {
content: "\f503";
}
.icon-user-ninja:before {
content: "\f504";
}
.icon-user-shield:before {
content: "\f505";
}
.icon-user-slash:before {
content: "\f506";
}
.icon-user-tag:before {
content: "\f507";
}
.icon-user-tie:before {
content: "\f508";
}
.icon-users-cog:before {
content: "\f509";
}
.icon-glasses:before {
content: "\f530";
}
.icon-palette:before {
content: "\f53f";
}
.icon-robot:before {
content: "\f544";
}
.icon-store:before {
content: "\f54e";
}
.icon-store-alt:before {
content: "\f54f";
}
.icon-atlas:before {
content: "\f558";
}
.icon-backspace:before {
content: "\f55a";
}
.icon-fingerprint:before {
content: "\f577";
}
.icon-globe-americas:before {
content: "\f57d";
}
.icon-headphones-alt:before {
content: "\f58f";
}
.icon-map-marked-alt:before {
content: "\f5a0";
}
.icon-paint-roller:before {
content: "\f5aa";
}
.icon-pen-fancy:before {
content: "\f5ac";
}
.icon-signature:before {
content: "\f5b7";
}
.icon-poop:before {
content: "\f619";
}
.icon-ad:before {
content: "\f641";
}
.icon-file-csv:before {
content: "\f6dd";
}
.icon-mask:before {
content: "\f6fa";
}
.icon-spider:before {
content: "\f717";
}
.icon-tractor:before {
content: "\f722";
}
.icon-calendar-day:before {
content: "\f783";
}
.icon-carrot:before {
content: "\f787";
}
.icon-guitar:before {
content: "\f7a6";
}
.icon-mug-hot:before {
content: "\f7b6";
}
.icon-hamburger:before {
content: "\f805";
}
.icon-hotdog:before {
content: "\f80f";
}
.icon-pepper-hot:before {
content: "\f816";
}
.icon-hat-cowboy:before {
content: "\f8c0";
}
.icon-mouse:before {
content: "\f8cc";
}
.icon-unity:before {
content: "\e049";
}
.icon-shopify:before {
content: "\e057";
}
.icon-rust:before {
content: "\e07a";
}
.icon-tiktok:before {
content: "\e07b";
}
.icon-linkedin:before {
content: "\f08c";
}
.icon-twitter:before {
content: "\f099";
}
.icon-facebook:before {
content: "\f09a";
}
.icon-github:before {
content: "\f09b";
}
.icon-pinterest:before {
content: "\f0d2";
}
.icon-youtube:before {
content: "\f167";
}
.icon-stack-overflow:before {
content: "\f16c";
}
.icon-instagram:before {
content: "\f16d";
}
.icon-apple:before {
content: "\f179";
}
.icon-windows:before {
content: "\f17a";
}
.icon-android:before {
content: "\f17b";
}
.icon-linux:before {
content: "\f17c";
}
.icon-skype:before {
content: "\f17e";
}
.icon-trello:before {
content: "\f181";
}
.icon-slack:before {
content: "\f198";
}
.icon-reddit:before {
content: "\f1a1";
}
.icon-steam:before {
content: "\f1b6";
}
.icon-spotify:before {
content: "\f1bc";
}
.icon-twitch:before {
content: "\f1e8";
}
.icon-paypal:before {
content: "\f1ed";
}
.icon-cc-visa:before {
content: "\f1f0";
}
.icon-cc-mastercard:before {
content: "\f1f1";
}
.icon-lastfm:before {
content: "\f202";
}
.icon-whatsapp:before {
content: "\f232";
}
.icon-get-pocket:before {
content: "\f265";
}
.icon-amazon:before {
content: "\f270";
}
.icon-gitlab:before {
content: "\f296";
}
.icon-snapchat:before {
content: "\f2ab";
}
.icon-telegram:before {
content: "\f2c6";
}
.icon-meetup:before {
content: "\f2e0";
}
.icon-audible:before {
content: "\f373";
}
.icon-aws:before {
content: "\f375";
}
.icon-discord:before {
content: "\f392";
}
.icon-docker:before {
content: "\f395";
}
.icon-google-drive:before {
content: "\f3aa";
}
.icon-google-play:before {
content: "\f3ab";
}
.icon-hubspot:before {
content: "\f3b2";
}
.icon-kickstarter-k:before {
content: "\f3bc";
}
.icon-npm:before {
content: "\f3d4";
}
.icon-patreon:before {
content: "\f3d9";
}
.icon-playstation:before {
content: "\f3df";
}
.icon-python:before {
content: "\f3e2";
}
.icon-rocketchat:before {
content: "\f3e8";
}
.icon-steam-symbol:before {
content: "\f3f6";
}
.icon-apple-pay:before {
content: "\f415";
}
.icon-amazon-pay:before {
content: "\f42c";
}
.icon-mastodon:before {
content: "\f4f6";
}
.icon-git-alt:before {
content: "\f841";
}

Binary file not shown.

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 224 KiB

Binary file not shown.

Binary file not shown.