bravissimo 0.0.0 → 0.0.8

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 (100) hide show
  1. checksums.yaml +5 -5
  2. data/_includes/blog_date.html +15 -0
  3. data/_includes/footer.html +31 -0
  4. data/_includes/head.html +26 -0
  5. data/_includes/navigation.html +41 -0
  6. data/_layouts/default.html +11 -0
  7. data/_layouts/main.html +13 -0
  8. data/_layouts/page.html +13 -0
  9. data/_layouts/post.html +63 -0
  10. data/_sass/_bootstrap.scss +56 -0
  11. data/_sass/_bravissimo.scss +9 -0
  12. data/_sass/bootstrap/_alerts.scss +73 -0
  13. data/_sass/bootstrap/_badges.scss +68 -0
  14. data/_sass/bootstrap/_breadcrumbs.scss +28 -0
  15. data/_sass/bootstrap/_button-groups.scss +244 -0
  16. data/_sass/bootstrap/_buttons.scss +168 -0
  17. data/_sass/bootstrap/_carousel.scss +270 -0
  18. data/_sass/bootstrap/_close.scss +36 -0
  19. data/_sass/bootstrap/_code.scss +69 -0
  20. data/_sass/bootstrap/_component-animations.scss +37 -0
  21. data/_sass/bootstrap/_dropdowns.scss +216 -0
  22. data/_sass/bootstrap/_forms.scss +617 -0
  23. data/_sass/bootstrap/_glyphicons.scss +307 -0
  24. data/_sass/bootstrap/_grid.scss +84 -0
  25. data/_sass/bootstrap/_input-groups.scss +171 -0
  26. data/_sass/bootstrap/_jumbotron.scss +54 -0
  27. data/_sass/bootstrap/_labels.scss +66 -0
  28. data/_sass/bootstrap/_list-group.scss +130 -0
  29. data/_sass/bootstrap/_media.scss +66 -0
  30. data/_sass/bootstrap/_mixins.scss +40 -0
  31. data/_sass/bootstrap/_modals.scss +150 -0
  32. data/_sass/bootstrap/_navbar.scss +662 -0
  33. data/_sass/bootstrap/_navs.scss +242 -0
  34. data/_sass/bootstrap/_normalize.scss +424 -0
  35. data/_sass/bootstrap/_pager.scss +54 -0
  36. data/_sass/bootstrap/_pagination.scss +89 -0
  37. data/_sass/bootstrap/_panels.scss +271 -0
  38. data/_sass/bootstrap/_popovers.scss +131 -0
  39. data/_sass/bootstrap/_print.scss +101 -0
  40. data/_sass/bootstrap/_progress-bars.scss +87 -0
  41. data/_sass/bootstrap/_responsive-embed.scss +35 -0
  42. data/_sass/bootstrap/_responsive-utilities.scss +179 -0
  43. data/_sass/bootstrap/_scaffolding.scss +161 -0
  44. data/_sass/bootstrap/_tables.scss +234 -0
  45. data/_sass/bootstrap/_theme.scss +291 -0
  46. data/_sass/bootstrap/_thumbnails.scss +38 -0
  47. data/_sass/bootstrap/_tooltip.scss +101 -0
  48. data/_sass/bootstrap/_type.scss +298 -0
  49. data/_sass/bootstrap/_utilities.scss +55 -0
  50. data/_sass/bootstrap/_variables.scss +874 -0
  51. data/_sass/bootstrap/_wells.scss +29 -0
  52. data/_sass/bootstrap/mixins/_alerts.scss +14 -0
  53. data/_sass/bootstrap/mixins/_background-variant.scss +12 -0
  54. data/_sass/bootstrap/mixins/_border-radius.scss +18 -0
  55. data/_sass/bootstrap/mixins/_buttons.scss +65 -0
  56. data/_sass/bootstrap/mixins/_center-block.scss +7 -0
  57. data/_sass/bootstrap/mixins/_clearfix.scss +22 -0
  58. data/_sass/bootstrap/mixins/_forms.scss +88 -0
  59. data/_sass/bootstrap/mixins/_gradients.scss +58 -0
  60. data/_sass/bootstrap/mixins/_grid-framework.scss +81 -0
  61. data/_sass/bootstrap/mixins/_grid.scss +122 -0
  62. data/_sass/bootstrap/mixins/_hide-text.scss +21 -0
  63. data/_sass/bootstrap/mixins/_image.scss +33 -0
  64. data/_sass/bootstrap/mixins/_labels.scss +12 -0
  65. data/_sass/bootstrap/mixins/_list-group.scss +32 -0
  66. data/_sass/bootstrap/mixins/_nav-divider.scss +10 -0
  67. data/_sass/bootstrap/mixins/_nav-vertical-align.scss +9 -0
  68. data/_sass/bootstrap/mixins/_opacity.scss +8 -0
  69. data/_sass/bootstrap/mixins/_pagination.scss +24 -0
  70. data/_sass/bootstrap/mixins/_panels.scss +24 -0
  71. data/_sass/bootstrap/mixins/_progress-bar.scss +10 -0
  72. data/_sass/bootstrap/mixins/_reset-filter.scss +8 -0
  73. data/_sass/bootstrap/mixins/_reset-text.scss +18 -0
  74. data/_sass/bootstrap/mixins/_resize.scss +6 -0
  75. data/_sass/bootstrap/mixins/_responsive-visibility.scss +21 -0
  76. data/_sass/bootstrap/mixins/_size.scss +10 -0
  77. data/_sass/bootstrap/mixins/_tab-focus.scss +9 -0
  78. data/_sass/bootstrap/mixins/_table-row.scss +28 -0
  79. data/_sass/bootstrap/mixins/_text-emphasis.scss +12 -0
  80. data/_sass/bootstrap/mixins/_text-overflow.scss +8 -0
  81. data/_sass/bootstrap/mixins/_vendor-prefixes.scss +222 -0
  82. data/_sass/bravissimo/_base.scss +22 -0
  83. data/_sass/bravissimo/_bootstrap.scss +53 -0
  84. data/_sass/bravissimo/_cards.scss +210 -0
  85. data/_sass/bravissimo/_colors.scss +78 -0
  86. data/_sass/syntax.scss +60 -0
  87. data/assets/font-awesome.css +4 -0
  88. data/css/bootstrap-theme.css +5 -0
  89. data/fonts/FontAwesome.otf +0 -0
  90. data/fonts/fontawesome-webfont.eot +0 -0
  91. data/fonts/fontawesome-webfont.svg +565 -0
  92. data/fonts/fontawesome-webfont.ttf +0 -0
  93. data/fonts/fontawesome-webfont.woff +0 -0
  94. data/fonts/fontawesome-webfont.woff2 +0 -0
  95. data/js/bootstrap.js +7 -0
  96. data/js/jquery.js +4 -0
  97. data/js/jquery.timeago.js +214 -0
  98. metadata +102 -8
  99. data/LICENSE +0 -21
  100. data/README.md +0 -7
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 55fc803d4e985fec0456585a7afc8dfef89210aa
4
- data.tar.gz: da5b2f2fb2a7a403a924ac2bb3494b7bf075ff04
2
+ SHA256:
3
+ metadata.gz: 65cd07eff4b0a6f66fded9e73a3674e38694fe3c06c7837e60c6309c56905831
4
+ data.tar.gz: b7340f2e4e1ddb5be9a5b33d87bc41e8f297a1087eec153dbbd927b10443ac9c
5
5
  SHA512:
6
- metadata.gz: 2a70f6631b3d60d9175276225d9c860870c6e12344c8ab9e6723b76170aaee6942f8a2336918e478021140a6aed4e31a98defc46e390f024eb2d46c7cbd89c5c
7
- data.tar.gz: aa51701c768857f769d23cea917e74e4a8d01e3cc817c86bf9747d1d02c89d11c6651fa2f661bafc3ed70a64e39d03c6a1d459faeef66427c1369e625e4d32eb
6
+ metadata.gz: 1b639ba8938a1473ce1d4218fd9f79bf1a59a8b038a16317d76fc33737351e20441db9615efc6cbc05c2fa734f30335851506b9b03f38b3aa04b422c591c6134
7
+ data.tar.gz: e9f6009a61477c2ce02af18578910d967735b5283074cc4835f09daaf4b387f8c06fba9c19679c48cae3749548508e58bb8f94180985bbacd153a4f7f9b32d99
@@ -0,0 +1,15 @@
1
+ <div class="panel panel-success" style="margin-top: 30px;">
2
+ <div class="panel-heading text-center">
3
+ <span class="h3">{{ page.date | date: '%B' }}</span>
4
+ </div>
5
+ <div class="panel-body text-center">
6
+ <div class="h1">{{ page.date | date: '%d' }}</div>
7
+ <div>{{ page.date | date: '%Y' }}</div>
8
+ </div>
9
+ </div>
10
+
11
+ <div>
12
+ <a class="btn btn-default btn-block" href="https://twitter.com/share?url={{ page.url | absolute_url | uri_escape }}&via=gunthercox&related=salviusrobot&text={{ page.title | uri_escape }}">
13
+ <i class="fa fa-twitter"></i> Tweet
14
+ </a>
15
+ </div>
@@ -0,0 +1,31 @@
1
+ <footer>
2
+ <div class="container-fluid color-rust">
3
+ <div class="row" style="padding: 15px 0px">
4
+ <div class="col-xs-6">
5
+ <i>Copyright &copy; {{ 'now' | date: "%Y" }} Gunther Cox</i>
6
+ </div>
7
+ <div class="col-xs-6 text-right">
8
+ <i class="fa fa-quote-right"></i>
9
+ </div>
10
+ </div>
11
+ </div>
12
+ </footer>
13
+
14
+ <script src="/js/jquery.js"></script>
15
+ <script src="/js/bootstrap.js"></script>
16
+ {% for js_name in page.extra_js %}
17
+ <script src="{{ js_name }}"></script>
18
+ {% endfor %}
19
+
20
+ {% if jekyll.environment == "production" %}
21
+ <script>
22
+ (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
23
+ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
24
+ m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
25
+ })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
26
+
27
+ ga('create', 'UA-42661604-4', 'auto');
28
+ ga('send', 'pageview');
29
+ </script>
30
+ <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
31
+ {% endif %}
@@ -0,0 +1,26 @@
1
+ <head>
2
+ <meta charset="utf-8"/>
3
+ <meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
4
+ <meta name="viewport" content="width=device-width, initial-scale=1"/>
5
+
6
+ <meta name="google-site-verification" content="Pbpi_BW55shRDvqTklU4kcgoXpBN9DGaBIAMC1YBnic" />
7
+
8
+ <meta content="{{ site.title }}" property="og:site_name"/>
9
+
10
+ <meta content="{{ page.description }}" property="og:description"/>
11
+
12
+ <meta name="description" content="{% if page.description %}{{ page.description | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.short_description }}{% endif %}"/>
13
+
14
+ <title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
15
+
16
+ <link rel="publisher" href="https://plus.google.com/+gunthercox"/>
17
+
18
+ <link rel="stylesheet" href="/css/main.css"/>
19
+ <link rel="stylesheet" href="/assets/font-awesome.css"/>
20
+ {% for css_name in page.extra_css %}
21
+ <link rel="stylesheet" href="{{ css_name }}">
22
+ {% endfor %}
23
+
24
+ <link rel="canonical" href="{{ site.url }}{{ page.url | replace:'index.html',''}}"/>
25
+ <link rel="shortlink" href="{{ site.url }}{{ page.url | replace:'index.html',''}}"/>
26
+ </head>
@@ -0,0 +1,41 @@
1
+ <div class="navbar navbar-inverse navbar-fixed-top" id="nav" role="navigation">
2
+ <div class="container-fluid">
3
+
4
+ <div class="navbar-header">
5
+ <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse">
6
+ <span class="sr-only">Toggle navigation</span>
7
+ <span class="icon-bar"></span>
8
+ <span class="icon-bar"></span>
9
+ <span class="icon-bar"></span>
10
+ </button>
11
+ <a class="navbar-brand" href="/">{{ site.title }}</a>
12
+ </div>
13
+
14
+ <div class="collapse navbar-collapse" id="navbar-collapse">
15
+ <ul class="nav navbar-nav">
16
+ <li>
17
+ <a href="/">
18
+ <i class="fa fa-home" aria-hidden="true"></i>
19
+ Home
20
+ </a>
21
+ </li>
22
+ </ul>
23
+ <ul class="nav navbar-nav navbar-right">
24
+ <li>
25
+ <a href='https://github.com/{{ site.github_username }}' aria-label="GitHub" target='_blank' class="btn btn-lg btn-link text-white">
26
+ <i class="fa fa-github" aria-hidden="true"></i>
27
+ </a>
28
+ </li>
29
+ <li>
30
+ <a href="https://twitter.com/{{ site.twitter_username }}" aria-label="Twitter" target='_blank' class="btn btn-lg btn-link text-white">
31
+ <i class="fa fa-twitter" aria-hidden="true"></i>
32
+ </a>
33
+ </li>
34
+ </ul>
35
+ </div>
36
+ </div>
37
+ </div>
38
+
39
+ <div class="margin-top">
40
+ <!-- Space under the fixed navbar -->
41
+ </div>
@@ -0,0 +1,11 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ {% include head.html %}
4
+ <body>
5
+ {% include navigation.html %}
6
+
7
+ {{ content }}
8
+
9
+ {% include footer.html %}
10
+ </body>
11
+ </html>
@@ -0,0 +1,13 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ {% include head.html %}
4
+ <body>
5
+ {% include navigation.html %}
6
+
7
+ <div class="container-fluid">
8
+ {{ content }}
9
+ </div>
10
+
11
+ {% include footer.html %}
12
+ </body>
13
+ </html>
@@ -0,0 +1,13 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ {% include head.html %}
4
+ <body>
5
+ {% include navigation.html %}
6
+
7
+ <div class="container-fluid">
8
+ {{ content }}
9
+ </div>
10
+
11
+ {% include footer.html %}
12
+ </body>
13
+ </html>
@@ -0,0 +1,63 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ {% include head.html %}
4
+ <body>
5
+ {% include navigation.html %}
6
+
7
+ <div class="container-fluid color-forest">
8
+ <div class="row" style="padding: 20px 0px">
9
+ <div class="col-xs-6">
10
+ {% if page.previous %}
11
+ <a class="btn btn-default white-outline color-forest" href="{{ page.previous.url }}">
12
+ Previous<span class="hidden-xs">: <i>{{ page.previous.title }}</i></span>
13
+ </a>
14
+ {% endif %}
15
+ </div>
16
+ <div class="col-xs-6 text-right">
17
+ {% if page.next %}
18
+ <a class="btn btn-default white-outline color-forest" href="{{ page.next.url }}">
19
+ Next<span class="hidden-xs">: <i>{{ page.next.title }}</i></span>
20
+ </a>
21
+ {% endif %}
22
+ </div>
23
+ </div>
24
+ </div>
25
+
26
+ <div class="container color-white post">
27
+
28
+ <div class="row">
29
+ <div class="hidden-xs col-sm-2">
30
+
31
+ {% include blog_date.html %}
32
+
33
+ <!-- Gunther Cox Blog Ad -->
34
+ <ins class="adsbygoogle"
35
+ style="display:block"
36
+ data-ad-client="ca-pub-3019790405701706"
37
+ data-ad-slot="6011909365"
38
+ data-ad-format="auto"></ins>
39
+ <script>
40
+ (adsbygoogle = window.adsbygoogle || []).push({});
41
+ </script>
42
+
43
+ </div>
44
+ <div class="col-xs-12 col-sm-10">
45
+
46
+ <h1>{{ page.title }}</h1>
47
+ <hr/>
48
+
49
+ {{ content }}
50
+
51
+ </div>
52
+
53
+ </div>
54
+
55
+ </div>
56
+
57
+ <div class="margin-top">
58
+ <!-- Space above the site footer -->
59
+ </div>
60
+
61
+ {% include footer.html %}
62
+ </body>
63
+ </html>
@@ -0,0 +1,56 @@
1
+ /*!
2
+ * Bootstrap v3.3.6 (http://getbootstrap.com)
3
+ * Copyright 2011-2015 Twitter, Inc.
4
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5
+ */
6
+
7
+ // Core variables and mixins
8
+ @import "bootstrap/variables";
9
+ @import "bootstrap/mixins";
10
+
11
+ // Reset and dependencies
12
+ @import "bootstrap/normalize";
13
+ @import "bootstrap/print";
14
+ @import "bootstrap/glyphicons";
15
+
16
+ // Core CSS
17
+ @import "bootstrap/scaffolding";
18
+ @import "bootstrap/type";
19
+ @import "bootstrap/code";
20
+ @import "bootstrap/grid";
21
+ @import "bootstrap/tables";
22
+ @import "bootstrap/forms";
23
+ @import "bootstrap/buttons";
24
+
25
+ // Components
26
+ @import "bootstrap/component-animations";
27
+ @import "bootstrap/dropdowns";
28
+ @import "bootstrap/button-groups";
29
+ @import "bootstrap/input-groups";
30
+ @import "bootstrap/navs";
31
+ @import "bootstrap/navbar";
32
+ @import "bootstrap/breadcrumbs";
33
+ @import "bootstrap/pagination";
34
+ @import "bootstrap/pager";
35
+ @import "bootstrap/labels";
36
+ @import "bootstrap/badges";
37
+ @import "bootstrap/jumbotron";
38
+ @import "bootstrap/thumbnails";
39
+ @import "bootstrap/alerts";
40
+ @import "bootstrap/progress-bars";
41
+ @import "bootstrap/media";
42
+ @import "bootstrap/list-group";
43
+ @import "bootstrap/panels";
44
+ @import "bootstrap/responsive-embed";
45
+ @import "bootstrap/wells";
46
+ @import "bootstrap/close";
47
+
48
+ // Components w/ JavaScript
49
+ @import "bootstrap/modals";
50
+ @import "bootstrap/tooltip";
51
+ @import "bootstrap/popovers";
52
+ @import "bootstrap/carousel";
53
+
54
+ // Utility classes
55
+ @import "bootstrap/utilities";
56
+ @import "bootstrap/responsive-utilities";
@@ -0,0 +1,9 @@
1
+ @charset "utf-8";
2
+
3
+ // Import partials from `sass_dir` (defaults to `_sass`)
4
+ @import
5
+ "bravissimo/base",
6
+ "bravissimo/colors",
7
+ "bravissimo/cards",
8
+ "bravissimo/bootstrap"
9
+ ;
@@ -0,0 +1,73 @@
1
+ //
2
+ // Alerts
3
+ // --------------------------------------------------
4
+
5
+
6
+ // Base styles
7
+ // -------------------------
8
+
9
+ .alert {
10
+ padding: $alert-padding;
11
+ margin-bottom: $line-height-computed;
12
+ border: 1px solid transparent;
13
+ border-radius: $alert-border-radius;
14
+
15
+ // Headings for larger alerts
16
+ h4 {
17
+ margin-top: 0;
18
+ // Specified for the h4 to prevent conflicts of changing $headings-color
19
+ color: inherit;
20
+ }
21
+
22
+ // Provide class for links that match alerts
23
+ .alert-link {
24
+ font-weight: $alert-link-font-weight;
25
+ }
26
+
27
+ // Improve alignment and spacing of inner content
28
+ > p,
29
+ > ul {
30
+ margin-bottom: 0;
31
+ }
32
+
33
+ > p + p {
34
+ margin-top: 5px;
35
+ }
36
+ }
37
+
38
+ // Dismissible alerts
39
+ //
40
+ // Expand the right padding and account for the close button's positioning.
41
+
42
+ .alert-dismissable, // The misspelled .alert-dismissable was deprecated in 3.2.0.
43
+ .alert-dismissible {
44
+ padding-right: ($alert-padding + 20);
45
+
46
+ // Adjust close link position
47
+ .close {
48
+ position: relative;
49
+ top: -2px;
50
+ right: -21px;
51
+ color: inherit;
52
+ }
53
+ }
54
+
55
+ // Alternate styles
56
+ //
57
+ // Generate contextual modifier classes for colorizing the alert.
58
+
59
+ .alert-success {
60
+ @include alert-variant($alert-success-bg, $alert-success-border, $alert-success-text);
61
+ }
62
+
63
+ .alert-info {
64
+ @include alert-variant($alert-info-bg, $alert-info-border, $alert-info-text);
65
+ }
66
+
67
+ .alert-warning {
68
+ @include alert-variant($alert-warning-bg, $alert-warning-border, $alert-warning-text);
69
+ }
70
+
71
+ .alert-danger {
72
+ @include alert-variant($alert-danger-bg, $alert-danger-border, $alert-danger-text);
73
+ }
@@ -0,0 +1,68 @@
1
+ //
2
+ // Badges
3
+ // --------------------------------------------------
4
+
5
+
6
+ // Base class
7
+ .badge {
8
+ display: inline-block;
9
+ min-width: 10px;
10
+ padding: 3px 7px;
11
+ font-size: $font-size-small;
12
+ font-weight: $badge-font-weight;
13
+ color: $badge-color;
14
+ line-height: $badge-line-height;
15
+ vertical-align: middle;
16
+ white-space: nowrap;
17
+ text-align: center;
18
+ background-color: $badge-bg;
19
+ border-radius: $badge-border-radius;
20
+
21
+ // Empty badges collapse automatically (not available in IE8)
22
+ &:empty {
23
+ display: none;
24
+ }
25
+
26
+ // Quick fix for badges in buttons
27
+ .btn & {
28
+ position: relative;
29
+ top: -1px;
30
+ }
31
+
32
+ .btn-xs &,
33
+ .btn-group-xs > .btn & {
34
+ top: 0;
35
+ padding: 1px 5px;
36
+ }
37
+
38
+ // [converter] extracted a& to a.badge
39
+
40
+ // Account for badges in navs
41
+ .list-group-item.active > &,
42
+ .nav-pills > .active > a > & {
43
+ color: $badge-active-color;
44
+ background-color: $badge-active-bg;
45
+ }
46
+
47
+ .list-group-item > & {
48
+ float: right;
49
+ }
50
+
51
+ .list-group-item > & + & {
52
+ margin-right: 5px;
53
+ }
54
+
55
+ .nav-pills > li > a > & {
56
+ margin-left: 3px;
57
+ }
58
+ }
59
+
60
+ // Hover state, but only for links
61
+ a.badge {
62
+ &:hover,
63
+ &:focus {
64
+ color: $badge-link-hover-color;
65
+ text-decoration: none;
66
+ cursor: pointer;
67
+ }
68
+ }