1

Add instagram to socials

This commit is contained in:
Evan Pratten 2020-01-03 13:46:13 -05:00
parent 8dead98e0b
commit 6265aea51c
No known key found for this signature in database
GPG Key ID: 93AC7B3D071356D3
5 changed files with 65 additions and 3 deletions

View File

@ -17,6 +17,7 @@ ga_analytics: UA-74118570-2
# Social
twitter_username: ewpratten
insta_username: evanpratten
github_username: ewpratten
devrant_username: ewpratten
gitlab_username: ewpratten
@ -42,6 +43,9 @@ collections:
highlighter: rouge
sass:
sass_dir: _sass
plugins:
- jekyll-feed
- jekyll-redirect-from # https://github.com/jekyll/jekyll-redirect-from

View File

@ -9,6 +9,7 @@
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="{{site.baseurl}}/assets/css/main.css">
<!-- <link rel="stylesheet" href="{{site.baseurl}}/assets/css/dark.css"> -->
<link rel="stylesheet" href="{{site.baseurl}}/assets/css/github-syntax.css">
<link rel="stylesheet" href="{{site.baseurl}}/assets/css/fontawesome.css">
<link href="https://fonts.googleapis.com/css?family=IBM+Plex+Mono:400,400i|IBM+Plex+Sans:100,100i,400,400i,700,700i" rel="stylesheet">

View File

@ -22,7 +22,7 @@
<hr>
<div class="list-group" id="posts">
<a href="#posts" class="list-group-item list-group-item-action list-group-item-dark">Featured
<a href="#posts" class="feature list-group-item list-group-item-action list-group-item-dark ">Featured
Post</a>
{% assign i = 0 %}

View File

@ -38,12 +38,12 @@ The following is my key history:
I exist in various places around the internet. Mainly:
- [Twitter](https://twitter.com/{{site.twitter_username}})
- [Instagram](https://www.instagram.com/((site.insta_username)))
- <a data-toggle="modal" data-target="#snapcode" href="">Snapchat</a>
- <a data-toggle="modal" data-target="#devrant-disclaimer" href="">devRant</a>
- [GitHub](https://github.com/{{site.github_username}})
- [GitLab](https://gitlab.com/{{site.gitlab_username}})
- [RetryLife Git](https://git.retrylife.ca/{{site.rtlgit_username}})
- [Keybase](https://keybase.com/{{site.keybase_username}})
- <a data-toggle="modal" data-target="#snapcode" href="">Snapchat</a>
## My gear
Currently, I use the following hardware:

57
assets/css/dark.css Normal file
View File

@ -0,0 +1,57 @@
/* Colors */
:root {
--bg-color: rgb(29, 33, 48);
--content-bg: rgb(35, 41, 55);
--panel-bg: rgb(46, 53, 74);
--highlight-clr: rgb(39, 232, 167);
--text-clr: rgb(228, 240, 252);
--heading-clr: rgb(81, 99, 119);
--link-clr: rgb(49, 174, 132);
}
body {
background-color: var(--bg-color);
color: var(--text-clr);
}
h1, h2, h3, h4, h5, h6 {
color: var(--heading-clr);
}
.container, .navbar-dark {
background-color: var(--content-bg) !important;
}
.profile {
border-color: var(--content-bg) !important;
}
.site-info {
background-color: var(--content-bg) !important;
}
.list-group, .list-group-item {
background-color: var(--panel-bg) !important;
color: var(--text-clr) !important;
}
.list-group, .list-group-item h5{
color: var(--link-clr) !important;
}
.feature{
background-color: var(--heading-clr) !important;
}
.navbar-brand {
color: var(--highlight-clr) !important;
}
a {
color: var(--link-clr);
}
a::hover {
color: var(--highlight-clr) !important;
}