Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ url: ""


# Delete the lines you don't need
# about 5 elements are recomended
# about 5 elements are recommended
github_username: dashingcode
codepen_username: your_codepen_username_goes_here
facebook_username: your_facebook_username_goes_here
Expand All @@ -24,6 +24,7 @@ medium_username: your_medium_username_goes_here
tumblr_username: your_tumblr_username_goes_here
weibo_username: your_weibo_username_goes_here
lastfm_username: your_lastfm_username_goes_here
meetup_username: your_meetup_account_id_number_goes_here
blog_url: "/blog"
email: your-email@example.domain
public_key_url: "https://raw.pastebin.com/LINK-TO-PUBLIC-KEY"
Expand Down
4 changes: 1 addition & 3 deletions css/front.css
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ li {
}
li:hover {
color: white;
text-decoration: none;
-webkit-transition: 500ms;
-moz-transition: 500ms;
transition: 500ms;
Expand All @@ -83,7 +82,6 @@ li {
border-radius: 0%;
border: none;
color: white;
margin: 8px;
display: block;
list-style: none;
margin: 10px 0px;
Expand All @@ -92,7 +90,7 @@ li {
width: auto;
}
li:hover {
background-color: none;
background-color: transparent;
transition: none;
}
a {
Expand Down
8 changes: 6 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
{% endif %}
<link rel="stylesheet" href="{{ "css/front.css" | prepend: site.baseurl }}">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700&subset=latin' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="content">
Expand Down Expand Up @@ -67,7 +67,7 @@ <h3>{{ site.description }}</h3>
<li><a class="fa fa-2x fa-instagram" href="https://instagram.com/{{ site.instagram_username }}"><span class="description">Instagram</span></a></li>
{% endif %}

{% if site.flickr_usernmae %}
{% if site.flickr_username %}
<li><a class="fa fa-2x fa-flickr" href="https://flickr.com/photos/{{ site.flickr_username }}"><span class="description">Flickr</span></a></li>
{% endif %}

Expand Down Expand Up @@ -111,6 +111,10 @@ <h3>{{ site.description }}</h3>
<li><a class="fa fa-2x fa-envelope" href="mailto:{{ site.email }}"><span class="description">Email</span></a></li>
{% endif %}

{% if site.meetup_username %}
<li><a class="fa fa-2x fa-meetup" href="https://www.meetup.com/members/{{ site.meetup_username }}"><span class="description">Meetup</span></a></li>
{% endif %}

{% if site.public_key_url %}
<li><a class="fa fa-2x fa-key" href="{{ site.public_key_url }}"><span class="description">PGP Key</span></a></li>
{% endif %}
Expand Down