diff --git a/Gemfile b/Gemfile index 23dc22d..caa00b9 100644 --- a/Gemfile +++ b/Gemfile @@ -6,6 +6,7 @@ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" } # gem "rails" gem "jekyll" +gem 'tzinfo-data' # Plugins group :jekyll_plugins do diff --git a/Gemfile.lock b/Gemfile.lock index 23562b3..5efb6d1 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -4,7 +4,7 @@ GEM addressable (2.7.0) public_suffix (>= 2.0.2, < 5.0) colorator (1.1.0) - concurrent-ruby (1.1.8) + concurrent-ruby (1.1.9) em-websocket (0.5.2) eventmachine (>= 0.12.9) http_parser.rb (~> 0.6.0) @@ -63,6 +63,10 @@ GEM ffi (~> 1.9) terminal-table (2.0.0) unicode-display_width (~> 1.1, >= 1.1.1) + tzinfo (2.0.4) + concurrent-ruby (~> 1.0) + tzinfo-data (1.2021.1) + tzinfo (>= 1.0.0) unicode-display_width (1.7.0) webrick (1.7.0) @@ -74,6 +78,7 @@ DEPENDENCIES jekyll jekyll-seo-tag jekyll-sitemap + tzinfo-data webrick (~> 1.7) BUNDLED WITH diff --git a/_layouts/default.html b/_layouts/default.html index 3c317df..bd0fbbc 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -16,7 +16,74 @@
+

The 512KB Club

+
+
+ + + Find us on GitHub +
diff --git a/assets/css/style.css b/assets/css/style.css index b3b0d4c..85e7e28 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -12,6 +12,7 @@ --pre: #D0D0D0; --pre-bg: #1A1A1A; --accent: #e6e6e6; + --gh-hover: #D3D3D3; --before-blue: #64B5F6; --after-blue: #BBDEFB; --before-orange: #FBC02D; @@ -29,6 +30,7 @@ --text: #EEE; --link: #64B5F6; --accent: #333; + --gh-hover: #222; --code: #F06292; } @@ -62,7 +64,25 @@ footer { width: 100%; } -header { +.gh-banner a { + text-align: center; + font-size: 1.5rem; + font-weight: bold; + background: var(--accent); + margin-top: .5rem; + padding: .5rem 0; + border-radius: 5px; + border: 1px solid var(--text); + display: block; + text-decoration: none; + color: var(--text) !important; +} + +.gh-banner a:hover { + background: var(--gh-hover); +} + +.title-banner { background: var(--header-bg); color: var(--header-text); border-radius: 5px; diff --git a/assets/images/github-logo.svg b/assets/images/github-logo.svg new file mode 100644 index 0000000..bf0cf26 --- /dev/null +++ b/assets/images/github-logo.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file