Updated contact page with icons. Closes #8

This commit is contained in:
Felipe M 2018-03-24 17:17:37 +01:00
parent 6339f6e05f
commit 17e75f5eb6
Signed by: fmartingr
GPG key ID: 716BC147715E716F
6 changed files with 56 additions and 8 deletions

View file

@ -8,7 +8,7 @@ $pad: 20px
margin: 0 0 $pad 0 margin: 0 0 $pad 0
&:after &:after
/* Or @extend clearfix // Or @extend clearfix
content: "" content: ""
display: table display: table
clear: both clear: both
@ -35,7 +35,7 @@ $pad: 20px
.col-1-8 .col-1-8
width: 12.5% width: 12.5%
/* Opt-in outside padding // Opt-in outside padding
.grid-pad .grid-pad
padding: $pad 0 $pad $pad padding: $pad 0 $pad $pad

View file

@ -1,6 +1,6 @@
body body
font-family: "Antic Slab" font-family: "Antic Slab"
font-size: 20px font-size: $font-size-normal
line-height: 1.5em line-height: 1.5em
.center .center
@ -47,6 +47,12 @@ p:first-child
.text-right .text-right
text-align: right text-align: right
.text-size-normal
font-size: $font-size-normal
.text-size-enormous
font-size: $font-size-enormous
.float-right .float-right
float: right float: right
@ -56,6 +62,9 @@ p:first-child
.clearfloat .clearfloat
clear: both clear: both
.display-block
display: block
.block-info .block-info
background-color: lightblue background-color: lightblue
padding: 12px padding: 12px

View file

@ -1,3 +1,6 @@
$red: #c24e4a $red: #c24e4a
$lightgray: #f6f6f6 $lightgray: #f6f6f6
$darkgray: #e9e9e9 $darkgray: #e9e9e9
$font-size-normal: 20px
$font-size-enormous: 5em

View file

@ -6,8 +6,41 @@ body:
Feel free to ccontact me via: Feel free to ccontact me via:
- E-Mail: [me@fmartingr.com](mailto:me@fmartingr.com) <div class="grid text-center">
- Github: https://github.com/fmartingr <div class="col-1-3 text-size-enormous">
- OStatus: https://mastodon.social/@fmartingr <a href="mailto:me@fmartingr.com">
- LinkedIn: https://linkedin.com/fmartingr <i class="fa fa-envelope" aria-hidden="true"></i>
- Telegram: https://telegram.me/fmartingr (fastest!) <span class="text-size-normal display-block">E-Mail</span>
</a>
</div>
<div class="col-1-3 text-size-enormous">
<a href="https://github.com/fmartingr">
<i class="fa fa-github" aria-hidden="true"></i>
<span class="text-size-normal display-block">Github</span>
</a>
</div>
<div class="col-1-3 text-size-enormous">
<a href="https://linkedin.com/fmartingr">
<i class="fa fa-linkedin" aria-hidden="true"></i>
<span class="text-size-normal display-block">LinkedIn</span>
</a>
</div>
<div class="col-1-3 text-size-enormous">
<a href="https://telegram.me/fmartingr">
<i class="fa fa-telegram" aria-hidden="true"></i>
<span class="text-size-normal display-block">Telegram</span>
</a>
</div>
<div class="col-1-3 text-size-enormous">
<a href="https://mastodon.social/@fmartingr">
<i class="fa fa-mastodon" aria-hidden="true"></i>
<span class="text-size-normal display-block">Mastodon</span>
</a>
</div>
<div class="col-1-3 text-size-enormous">
<a href="https://twitter.com/fmartingr">
<i class="fa fa-twitter" aria-hidden="true"></i>
<span class="text-size-normal display-block">Birdsite</span>
</a>
</div>
</div>

View file

@ -12,9 +12,11 @@ Software:
* [Emacs](https://www.gnu.org/software/emacs/) * [Emacs](https://www.gnu.org/software/emacs/)
* [Gulp](http://gulpjs.com/) * [Gulp](http://gulpjs.com/)
* [Lektor](https://getlektor.com) * [Lektor](https://getlektor.com)
* [Visual Studio Code](https://code.visualstudio.com)
Javascript libraries: Javascript libraries:
* [Featherlight lightbox](https://github.com/noelboss/featherlight/) * [Featherlight lightbox](https://github.com/noelboss/featherlight/)
* [Fork Awesome](https://forkawesome.github.io/Fork-Awesome/)
* [jQuery](https://jquery.com) * [jQuery](https://jquery.com)
And of course, this site "source code" [is publicly accessible on Github too](https://github.com/fmartingr/fmartingr-lektor). And of course, this site "source code" [is publicly accessible on Github too](https://github.com/fmartingr/fmartingr-lektor).

View file

@ -4,6 +4,7 @@
<title>{% block page_title %}Felipe Martin{% endblock %}</title> <title>{% block page_title %}Felipe Martin{% endblock %}</title>
<link href='https://fonts.googleapis.com/css?family=Antic+Slab' rel='stylesheet' type='text/css'> <link href='https://fonts.googleapis.com/css?family=Antic+Slab' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="{{ '/static/css/style.css'|asseturl }}"> <link rel="stylesheet" href="{{ '/static/css/style.css'|asseturl }}">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/fork-awesome@1.0.11/css/fork-awesome.min.css" integrity="sha256-MGU/JUq/40CFrfxjXb5pZjpoZmxiP2KuICN5ElLFNd8=" crossorigin="anonymous">
<link rel="stylesheet" href="{{ get_pygments_stylesheet()|url }}"> <link rel="stylesheet" href="{{ get_pygments_stylesheet()|url }}">
<link rel="alternate" type="application/rss+xml" title="RSS Feed for fmartingr.com" href="/feed.xml" /> <link rel="alternate" type="application/rss+xml" title="RSS Feed for fmartingr.com" href="/feed.xml" />
<!-- Mobile --> <!-- Mobile -->