darkmatter-theme 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +151 -0
  3. data/README.md +52 -0
  4. data/_includes/foot.html +0 -0
  5. data/_includes/footer.html +54 -0
  6. data/_includes/head.html +48 -0
  7. data/_includes/header.html +62 -0
  8. data/_layouts/cover.html +20 -0
  9. data/_layouts/default.html +34 -0
  10. data/_layouts/page.html +5 -0
  11. data/_layouts/post.html +5 -0
  12. data/_layouts/scroll.html +39 -0
  13. data/_layouts/slide.html +230 -0
  14. data/_pages/about/index.html +99 -0
  15. data/_pages/album/index.html +185 -0
  16. data/_pages/blog/index.html +151 -0
  17. data/_pages/cover/index.html +15 -0
  18. data/_pages/frontpage/index.html +216 -0
  19. data/_pages/fullwidth/index.html +38 -0
  20. data/_pages/landing/index.html +83 -0
  21. data/_pages/portfolio-1/index.html +119 -0
  22. data/_pages/portfolio-2/index.html +121 -0
  23. data/_pages/portfolio-3/index.html +121 -0
  24. data/_pages/portfolio-item/index.html +73 -0
  25. data/_pages/post/index.html +196 -0
  26. data/_pages/pricing/index.html +61 -0
  27. data/_pages/product/index.html +49 -0
  28. data/_pages/scroll/index.html +59 -0
  29. data/_pages/search/index.html +24 -0
  30. data/_pages/team/index.html +69 -0
  31. data/_pages/theme/index.html +1225 -0
  32. data/_pages/welcome/index.html +83 -0
  33. data/_posts/2018-01-01-what-is-bacon-ipsum-pt1.md +39 -0
  34. data/_posts/2018-02-01-what-is-bacon-ipsum-pt2.md +39 -0
  35. data/_posts/2018-03-01-what-is-bacon-ipsum-pt3.md +39 -0
  36. data/_slides/sample-presentation.md +115 -0
  37. data/assets/images/css/bg-pattern.png +0 -0
  38. data/assets/images/darkmatter.png +0 -0
  39. data/assets/scripts/jquery-easing.min.js +1 -0
  40. data/assets/scripts/scrolling-nav.js +29 -0
  41. data/assets/styles/darkmatter-cover.css +134 -0
  42. data/assets/styles/darkmatter-scroll.css +20 -0
  43. data/assets/styles/darkmatter.css +70 -0
  44. metadata +128 -0
@@ -0,0 +1,83 @@
1
+ ---
2
+ layout: default
3
+ title: Welcome
4
+ permalink: /welcome/
5
+ date: 2018-01-01 00:00:00 -0600
6
+ tags: welcome template business
7
+ ---
8
+ <!-- Page Content -->
9
+ <div class="container">
10
+
11
+ <!-- Jumbotron Header -->
12
+ <header class="jumbotron my-4">
13
+ <h1 class="display-3">A Warm Welcome!</h1>
14
+ <p class="lead">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ipsa, ipsam, eligendi, in quo sunt
15
+ possimus non incidunt odit vero aliquid similique quaerat nam nobis illo aspernatur vitae fugiat numquam
16
+ repellat.</p>
17
+ <a href="#" class="btn btn-primary btn-lg">Call to action!</a>
18
+ </header>
19
+
20
+ <!-- Page Features -->
21
+ <div class="row text-center">
22
+
23
+ <div class="col-lg-3 col-md-6 mb-4">
24
+ <div class="card">
25
+ <img class="card-img-top" src="http://placehold.it/500x325" alt="">
26
+ <div class="card-body">
27
+ <h4 class="card-title">Card title</h4>
28
+ <p class="card-text">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sapiente esse
29
+ necessitatibus neque.</p>
30
+ </div>
31
+ <div class="card-footer">
32
+ <a href="#" class="btn btn-primary">Find Out More!</a>
33
+ </div>
34
+ </div>
35
+ </div>
36
+
37
+ <div class="col-lg-3 col-md-6 mb-4">
38
+ <div class="card">
39
+ <img class="card-img-top" src="http://placehold.it/500x325" alt="">
40
+ <div class="card-body">
41
+ <h4 class="card-title">Card title</h4>
42
+ <p class="card-text">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Explicabo magni
43
+ sapiente, tempore debitis beatae culpa natus architecto.</p>
44
+ </div>
45
+ <div class="card-footer">
46
+ <a href="#" class="btn btn-primary">Find Out More!</a>
47
+ </div>
48
+ </div>
49
+ </div>
50
+
51
+ <div class="col-lg-3 col-md-6 mb-4">
52
+ <div class="card">
53
+ <img class="card-img-top" src="http://placehold.it/500x325" alt="">
54
+ <div class="card-body">
55
+ <h4 class="card-title">Card title</h4>
56
+ <p class="card-text">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sapiente esse
57
+ necessitatibus neque.</p>
58
+ </div>
59
+ <div class="card-footer">
60
+ <a href="#" class="btn btn-primary">Find Out More!</a>
61
+ </div>
62
+ </div>
63
+ </div>
64
+
65
+ <div class="col-lg-3 col-md-6 mb-4">
66
+ <div class="card">
67
+ <img class="card-img-top" src="http://placehold.it/500x325" alt="">
68
+ <div class="card-body">
69
+ <h4 class="card-title">Card title</h4>
70
+ <p class="card-text">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Explicabo magni
71
+ sapiente, tempore debitis beatae culpa natus architecto.</p>
72
+ </div>
73
+ <div class="card-footer">
74
+ <a href="#" class="btn btn-primary">Find Out More!</a>
75
+ </div>
76
+ </div>
77
+ </div>
78
+
79
+ </div>
80
+ <!-- /.row -->
81
+
82
+ </div>
83
+ <!-- /.container -->
@@ -0,0 +1,39 @@
1
+ ---
2
+ layout: post
3
+ title: "What is Bacon Ipsum pt1"
4
+ date: 2018-01-01 00:00:00 -0600
5
+ tags: bacon linux
6
+ ---
7
+
8
+ # SECTION
9
+ Bacon ipsum dolor amet andouille frankfurter est tempor shankle flank brisket officia, enim et boudin ham quis. Leberkas qui pork mollit aliquip drumstick dolore fugiat prosciutto do velit est. Reprehenderit pork capicola fatback cillum alcatra brisket doner, minim dolor irure ex jerky tenderloin prosciutto. Beef ribs pancetta tail leberkas shank elit ham hock venison occaecat andouille ham doner magna. Irure jerky landjaeger ut commodo nulla.
10
+
11
+
12
+ ### HIGHLIGHT
13
+ `​html
14
+ <a href="#">Hello world</a>
15
+ `​
16
+
17
+ ### CODE BLOCK
18
+
19
+ {% highlight ruby %}
20
+ def show
21
+ @widget = Widget(params[:id])
22
+ respond_to do |format|
23
+ format.html # show.html.erb
24
+ format.json { render json: @widget }
25
+ end
26
+ end
27
+ {% endhighlight %}
28
+
29
+
30
+ ### PARAGRAPHS
31
+ Id aute laborum consectetur t-bone in prosciutto cillum kevin. Drumstick corned beef beef venison, ad exercitation frankfurter capicola. Fatback t-bone pork chop ullamco est tempor commodo brisket quis meatball salami ground round capicola. Kevin picanha shoulder ut turducken dolore.
32
+
33
+ Ad doner culpa tail ea laboris labore. Corned beef excepteur enim, ground round biltong aliquip pork belly pastrami meatball short loin ham hock sed. Flank beef rump, esse quis labore cow nulla excepteur tempor. Nisi boudin cupidatat tenderloin, filet mignon rump ut. Minim leberkas velit kevin aliquip. Shankle capicola cupim lorem dolore esse chicken turkey frankfurter cillum laboris short ribs.
34
+
35
+ Minim chuck hamburger rump boudin. Strip steak ut shank sint incididunt. Commodo dolore drumstick, tempor tenderloin meatball picanha non boudin fatback velit short ribs. Sirloin fatback kevin meatloaf pork. Do non pork bacon irure drumstick pancetta t-bone et ex elit sausage labore.
36
+
37
+ Rump capicola pig nulla dolore. Ex salami filet mignon reprehenderit turkey in kevin tail dolore ham excepteur ut nisi bresaola proident. Sirloin elit shoulder, nostrud aliqua strip steak short loin ullamco salami magna kevin eiusmod dolore consectetur prosciutto. Swine minim duis salami. Doner tenderloin non nostrud laboris. Velit excepteur laborum nisi, aliqua short ribs ut elit ham swine anim ball tip sint minim bresaola.
38
+
39
+ Does your lorem ipsum text long for something a little meatier? Give our generator a try… it’s tasty!
@@ -0,0 +1,39 @@
1
+ ---
2
+ layout: post
3
+ title: "What is Bacon Ipsum pt2"
4
+ date: 2018-02-01 00:00:00 -0600
5
+ tags: bacon ipsum
6
+ ---
7
+
8
+ # SECTION
9
+ Bacon ipsum dolor amet andouille frankfurter est tempor shankle flank brisket officia, enim et boudin ham quis. Leberkas qui pork mollit aliquip drumstick dolore fugiat prosciutto do velit est. Reprehenderit pork capicola fatback cillum alcatra brisket doner, minim dolor irure ex jerky tenderloin prosciutto. Beef ribs pancetta tail leberkas shank elit ham hock venison occaecat andouille ham doner magna. Irure jerky landjaeger ut commodo nulla.
10
+
11
+
12
+ ### HIGHLIGHT
13
+ `​html
14
+ <a href="#">Hello world</a>
15
+ `​
16
+
17
+ ### CODE BLOCK
18
+
19
+ {% highlight ruby %}
20
+ def show
21
+ @widget = Widget(params[:id])
22
+ respond_to do |format|
23
+ format.html # show.html.erb
24
+ format.json { render json: @widget }
25
+ end
26
+ end
27
+ {% endhighlight %}
28
+
29
+
30
+ ### PARAGRAPHS
31
+ Id aute laborum consectetur t-bone in prosciutto cillum kevin. Drumstick corned beef beef venison, ad exercitation frankfurter capicola. Fatback t-bone pork chop ullamco est tempor commodo brisket quis meatball salami ground round capicola. Kevin picanha shoulder ut turducken dolore.
32
+
33
+ Ad doner culpa tail ea laboris labore. Corned beef excepteur enim, ground round biltong aliquip pork belly pastrami meatball short loin ham hock sed. Flank beef rump, esse quis labore cow nulla excepteur tempor. Nisi boudin cupidatat tenderloin, filet mignon rump ut. Minim leberkas velit kevin aliquip. Shankle capicola cupim lorem dolore esse chicken turkey frankfurter cillum laboris short ribs.
34
+
35
+ Minim chuck hamburger rump boudin. Strip steak ut shank sint incididunt. Commodo dolore drumstick, tempor tenderloin meatball picanha non boudin fatback velit short ribs. Sirloin fatback kevin meatloaf pork. Do non pork bacon irure drumstick pancetta t-bone et ex elit sausage labore.
36
+
37
+ Rump capicola pig nulla dolore. Ex salami filet mignon reprehenderit turkey in kevin tail dolore ham excepteur ut nisi bresaola proident. Sirloin elit shoulder, nostrud aliqua strip steak short loin ullamco salami magna kevin eiusmod dolore consectetur prosciutto. Swine minim duis salami. Doner tenderloin non nostrud laboris. Velit excepteur laborum nisi, aliqua short ribs ut elit ham swine anim ball tip sint minim bresaola.
38
+
39
+ Does your lorem ipsum text long for something a little meatier? Give our generator a try… it’s tasty!
@@ -0,0 +1,39 @@
1
+ ---
2
+ layout: post
3
+ title: "What is Bacon Ipsum pt3"
4
+ date: 2018-03-01 00:00:00 -0600
5
+ tags: bacon ipsum
6
+ ---
7
+
8
+ # SECTION
9
+ Bacon ipsum dolor amet andouille frankfurter est tempor shankle flank brisket officia, enim et boudin ham quis. Leberkas qui pork mollit aliquip drumstick dolore fugiat prosciutto do velit est. Reprehenderit pork capicola fatback cillum alcatra brisket doner, minim dolor irure ex jerky tenderloin prosciutto. Beef ribs pancetta tail leberkas shank elit ham hock venison occaecat andouille ham doner magna. Irure jerky landjaeger ut commodo nulla.
10
+
11
+
12
+ ### HIGHLIGHT
13
+ `​html
14
+ <a href="#">Hello world</a>
15
+ `​
16
+
17
+ ### CODE BLOCK
18
+
19
+ {% highlight ruby %}
20
+ def show
21
+ @widget = Widget(params[:id])
22
+ respond_to do |format|
23
+ format.html # show.html.erb
24
+ format.json { render json: @widget }
25
+ end
26
+ end
27
+ {% endhighlight %}
28
+
29
+
30
+ ### PARAGRAPHS
31
+ Id aute laborum consectetur t-bone in prosciutto cillum kevin. Drumstick corned beef beef venison, ad exercitation frankfurter capicola. Fatback t-bone pork chop ullamco est tempor commodo brisket quis meatball salami ground round capicola. Kevin picanha shoulder ut turducken dolore.
32
+
33
+ Ad doner culpa tail ea laboris labore. Corned beef excepteur enim, ground round biltong aliquip pork belly pastrami meatball short loin ham hock sed. Flank beef rump, esse quis labore cow nulla excepteur tempor. Nisi boudin cupidatat tenderloin, filet mignon rump ut. Minim leberkas velit kevin aliquip. Shankle capicola cupim lorem dolore esse chicken turkey frankfurter cillum laboris short ribs.
34
+
35
+ Minim chuck hamburger rump boudin. Strip steak ut shank sint incididunt. Commodo dolore drumstick, tempor tenderloin meatball picanha non boudin fatback velit short ribs. Sirloin fatback kevin meatloaf pork. Do non pork bacon irure drumstick pancetta t-bone et ex elit sausage labore.
36
+
37
+ Rump capicola pig nulla dolore. Ex salami filet mignon reprehenderit turkey in kevin tail dolore ham excepteur ut nisi bresaola proident. Sirloin elit shoulder, nostrud aliqua strip steak short loin ullamco salami magna kevin eiusmod dolore consectetur prosciutto. Swine minim duis salami. Doner tenderloin non nostrud laboris. Velit excepteur laborum nisi, aliqua short ribs ut elit ham swine anim ball tip sint minim bresaola.
38
+
39
+ Does your lorem ipsum text long for something a little meatier? Give our generator a try… it’s tasty!
@@ -0,0 +1,115 @@
1
+ ---
2
+ layout: slide
3
+ title: Sample Presentation
4
+ description: A presentation slide for how to use reveal.js in Jekyll
5
+ theme: white
6
+ transition: slide
7
+ permalink: /slides/sample-presentation
8
+ date: 2018-01-01 00:00:00 -0600
9
+ tags: presentation
10
+ ---
11
+
12
+ <section data-markdown>
13
+
14
+ ## Hello!
15
+
16
+ The [Darkmatter Theme](https://github.com/fellowhobbyist/darkmatter-theme) includes [reveal.js](https://github.com/hakimel/reveal.js/) which
17
+ enables you to create beautiful interactive slide decks in your Jekyll Project using HTML and Markdown.
18
+ </section>
19
+
20
+ <section>
21
+
22
+ <h2>Basic Navigation</h2>
23
+
24
+ <ul>
25
+ <li>Press <b><i>[Esc]</i></b> to enter the slide overview</li>
26
+ <li>Press <b><i>[s]</i></b> to open the notes window</li>
27
+ <li>Use cursors <b><i>[&lt; &gt;]</i></b> or simply swipe to navigate</li>
28
+ </ul>
29
+
30
+ <aside class="notes">
31
+ Oh hey, these are some notes. They'll be hidden in your presentation., but you can see them if you open the speaker notes window.
32
+ </aside>
33
+
34
+ </section>
35
+
36
+
37
+ <section>
38
+ <section id="fragments">
39
+ <h2>Fragments</h2>
40
+ <p>Hit the next arrow...</p>
41
+ <p class="fragment">... to step through ...</p>
42
+ <p><span class="fragment">... a</span> <span class="fragment">fragmented</span> <span class="fragment">slide.</span></p>
43
+
44
+ <aside class="notes">
45
+ This slide has fragments which are also stepped through in the notes window.
46
+ </aside>
47
+ </section>
48
+ <section>
49
+ <h2>Fragment Styles</h2>
50
+ <p>There's different types of fragments, like:</p>
51
+ <p class="fragment grow">grow</p>
52
+ <p class="fragment shrink">shrink</p>
53
+ <p class="fragment fade-out">fade-out</p>
54
+ <p class="fragment fade-up">fade-up (also down, left and right!)</p>
55
+ <p class="fragment current-visible">current-visible</p>
56
+ <p>Highlight <span class="fragment highlight-red">red</span> <span class="fragment highlight-blue">blue</span> <span class="fragment highlight-green">green</span></p>
57
+ </section>
58
+ </section>
59
+
60
+ <section>
61
+ <div class="col-8-md">
62
+ <h2>Pretty Code</h2>
63
+
64
+ <pre><code class="hljs" data-trim contenteditable>
65
+ me = new person();
66
+ while(me.awake()){
67
+ me.code();
68
+ }
69
+ </code></pre>
70
+
71
+ <p>Code syntax highlighting courtesy of <a href="http://softwaremaniacs.org/soft/highlight/en/description/">highlight.js</a>.</p>
72
+ </div>
73
+ </section>
74
+
75
+
76
+ <section data-markdown data-transition="slide" data-background="#333" data-background-transition="zoom">
77
+
78
+ ## Project Structure
79
+
80
+ Simply add your presentations under the _slides directory
81
+
82
+ /
83
+ _includes/ # HEAD, HEADER AND FOOTER
84
+ foot.html
85
+ footer.html
86
+ head.html
87
+ header.html
88
+ _layouts/ # LAYOUTS DIRECTORY
89
+ cover.html
90
+ default.html
91
+ page.html
92
+ post.html
93
+ slide.html
94
+ _pages/ # STATIC PAGES
95
+ home/
96
+ about/
97
+ ...
98
+ _posts/ # BLOG POSTS
99
+ _slides/ # REVEAL.JS HTML PRESENTATIONS
100
+ assets/ # FONTS, IMAGES, SCRIPTS, STYLES
101
+ fonts/
102
+ images/
103
+ modules/
104
+ reveal.js
105
+ scripts/
106
+ styles/
107
+
108
+ </section>
109
+
110
+
111
+ <section>
112
+ <img src="../assets/images/darkmatter.png" style="border:none; box-shadow:none;"/>
113
+ <h3>Darkmatter Theme</h3>
114
+ <p>Handcrafted with <i class="fas fa-heart"></i> by a <a href="https://fellowhobbyist.com">Fellow Hobbyist</a></p>
115
+ </section>
@@ -0,0 +1 @@
1
+ (function(factory){if(typeof define==="function"&&define.amd){define(["jquery"],function($){return factory($)})}else if(typeof module==="object"&&typeof module.exports==="object"){exports=factory(require("jquery"))}else{factory(jQuery)}})(function($){$.easing.jswing=$.easing.swing;var pow=Math.pow,sqrt=Math.sqrt,sin=Math.sin,cos=Math.cos,PI=Math.PI,c1=1.70158,c2=c1*1.525,c3=c1+1,c4=2*PI/3,c5=2*PI/4.5;function bounceOut(x){var n1=7.5625,d1=2.75;if(x<1/d1){return n1*x*x}else if(x<2/d1){return n1*(x-=1.5/d1)*x+.75}else if(x<2.5/d1){return n1*(x-=2.25/d1)*x+.9375}else{return n1*(x-=2.625/d1)*x+.984375}}$.extend($.easing,{def:"easeOutQuad",swing:function(x){return $.easing[$.easing.def](x)},easeInQuad:function(x){return x*x},easeOutQuad:function(x){return 1-(1-x)*(1-x)},easeInOutQuad:function(x){return x<.5?2*x*x:1-pow(-2*x+2,2)/2},easeInCubic:function(x){return x*x*x},easeOutCubic:function(x){return 1-pow(1-x,3)},easeInOutCubic:function(x){return x<.5?4*x*x*x:1-pow(-2*x+2,3)/2},easeInQuart:function(x){return x*x*x*x},easeOutQuart:function(x){return 1-pow(1-x,4)},easeInOutQuart:function(x){return x<.5?8*x*x*x*x:1-pow(-2*x+2,4)/2},easeInQuint:function(x){return x*x*x*x*x},easeOutQuint:function(x){return 1-pow(1-x,5)},easeInOutQuint:function(x){return x<.5?16*x*x*x*x*x:1-pow(-2*x+2,5)/2},easeInSine:function(x){return 1-cos(x*PI/2)},easeOutSine:function(x){return sin(x*PI/2)},easeInOutSine:function(x){return-(cos(PI*x)-1)/2},easeInExpo:function(x){return x===0?0:pow(2,10*x-10)},easeOutExpo:function(x){return x===1?1:1-pow(2,-10*x)},easeInOutExpo:function(x){return x===0?0:x===1?1:x<.5?pow(2,20*x-10)/2:(2-pow(2,-20*x+10))/2},easeInCirc:function(x){return 1-sqrt(1-pow(x,2))},easeOutCirc:function(x){return sqrt(1-pow(x-1,2))},easeInOutCirc:function(x){return x<.5?(1-sqrt(1-pow(2*x,2)))/2:(sqrt(1-pow(-2*x+2,2))+1)/2},easeInElastic:function(x){return x===0?0:x===1?1:-pow(2,10*x-10)*sin((x*10-10.75)*c4)},easeOutElastic:function(x){return x===0?0:x===1?1:pow(2,-10*x)*sin((x*10-.75)*c4)+1},easeInOutElastic:function(x){return x===0?0:x===1?1:x<.5?-(pow(2,20*x-10)*sin((20*x-11.125)*c5))/2:pow(2,-20*x+10)*sin((20*x-11.125)*c5)/2+1},easeInBack:function(x){return c3*x*x*x-c1*x*x},easeOutBack:function(x){return 1+c3*pow(x-1,3)+c1*pow(x-1,2)},easeInOutBack:function(x){return x<.5?pow(2*x,2)*((c2+1)*2*x-c2)/2:(pow(2*x-2,2)*((c2+1)*(x*2-2)+c2)+2)/2},easeInBounce:function(x){return 1-bounceOut(1-x)},easeOutBounce:bounceOut,easeInOutBounce:function(x){return x<.5?(1-bounceOut(1-2*x))/2:(1+bounceOut(2*x-1))/2}})});
@@ -0,0 +1,29 @@
1
+ (function($) {
2
+ "use strict"; // Start of use strict
3
+
4
+ // Smooth scrolling using jQuery easing
5
+ $('a.js-scroll-trigger[href*="#"]:not([href="#"])').click(function() {
6
+ if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') && location.hostname == this.hostname) {
7
+ var target = $(this.hash);
8
+ target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
9
+ if (target.length) {
10
+ $('html, body').animate({
11
+ scrollTop: (target.offset().top - 54)
12
+ }, 1000, "easeInOutExpo");
13
+ return false;
14
+ }
15
+ }
16
+ });
17
+
18
+ // Closes responsive menu when a scroll trigger link is clicked
19
+ $('.js-scroll-trigger').click(function() {
20
+ $('.navbar-collapse').collapse('hide');
21
+ });
22
+
23
+ // Activate scrollspy to add active class to navbar items on scroll
24
+ $('body').scrollspy({
25
+ target: '#mainNav',
26
+ offset: 54
27
+ });
28
+
29
+ })(jQuery); // End of use strict
@@ -0,0 +1,134 @@
1
+ /*!
2
+ * Darkmatter Theme - (https://github.com/fellowhobbyist/darkmatter-theme)
3
+ * Copyright 2018 FellowHobbyist (Brian Hooper)
4
+ * Licensed under MPL_2.0 (https://www.mozilla.org/en-US/MPL/2.0/)
5
+ */
6
+
7
+ /*
8
+ * Globals
9
+ */
10
+
11
+ /* Links */
12
+ a,
13
+ a:focus,
14
+ a:hover {
15
+ color: #fff;
16
+ }
17
+
18
+ /* Custom default button */
19
+ .btn-secondary,
20
+ .btn-secondary:hover,
21
+ .btn-secondary:focus {
22
+ color: #333;
23
+ text-shadow: none; /* Prevent inheritance from `body` */
24
+ background-color: #fff;
25
+ border: .05rem solid #fff;
26
+ }
27
+
28
+
29
+ /*
30
+ * Base structure
31
+ */
32
+
33
+ html,
34
+ body {
35
+ height: 100%;
36
+ background-color: #333;
37
+ color: white;
38
+ background: url("../images/css/bg-pattern.png"), #333;
39
+ background: url("../images/css/bg-pattern.png"), -webkit-linear-gradient(to left, #333, #000);
40
+ background: url("../images/css/bg-pattern.png"), linear-gradient(to left, #333, #000);
41
+
42
+ }
43
+
44
+
45
+ header.masthead {
46
+ position: relative;
47
+ width: 100%;
48
+ padding-top: 150px;
49
+ padding-bottom: 100px;
50
+ color: white;
51
+ background: url("../images/css/bg-pattern.png"), #70C1B3;
52
+ background: url("../images/css/bg-pattern.png"), -webkit-linear-gradient(to left, #70C1B3, #50514F);
53
+ background: url("../images/css/bg-pattern.png"), linear-gradient(to left, #70C1B3, #50514F);
54
+ }
55
+
56
+ body {
57
+ display: -ms-flexbox;
58
+ display: -webkit-box;
59
+ display: flex;
60
+ -ms-flex-pack: center;
61
+ -webkit-box-pack: center;
62
+ justify-content: center;
63
+ color: #fff;
64
+ text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
65
+ box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
66
+ }
67
+
68
+ .cover-container {
69
+ max-width: 60em;
70
+ }
71
+
72
+
73
+ /*
74
+ * Header
75
+ */
76
+ .masthead {
77
+ margin-bottom: 2rem;
78
+ }
79
+
80
+ .masthead-brand {
81
+ margin-bottom: 0;
82
+ }
83
+
84
+ .nav-masthead .nav-link {
85
+ padding: .25rem 0;
86
+ font-weight: 700;
87
+ color: rgba(255, 255, 255, .5);
88
+ background-color: transparent;
89
+ border-bottom: .25rem solid transparent;
90
+ }
91
+
92
+ .nav-masthead .nav-link:hover,
93
+ .nav-masthead .nav-link:focus {
94
+ border-bottom-color: rgba(255, 255, 255, .25);
95
+ }
96
+
97
+ .nav-masthead .nav-link + .nav-link {
98
+ margin-left: 1rem;
99
+ }
100
+
101
+ .nav-masthead .active {
102
+ color: #fff;
103
+ border-bottom-color: #fff;
104
+ }
105
+
106
+ @media (min-width: 48em) {
107
+ .masthead-brand {
108
+ float: left;
109
+ }
110
+ .nav-masthead {
111
+ float: right;
112
+ }
113
+ }
114
+
115
+
116
+ /*
117
+ * Cover
118
+ */
119
+ .cover {
120
+ padding: 0 1.5rem;
121
+ padding-top: 10.0rem;
122
+ }
123
+ .cover .btn-lg {
124
+ padding: .75rem 1.25rem;
125
+ font-weight: 700;
126
+ }
127
+
128
+
129
+ /*
130
+ * Footer
131
+ */
132
+ .mastfoot {
133
+ color: rgba(255, 255, 255, .5);
134
+ }