linaro-jekyll-theme 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (139) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +50 -0
  4. data/_includes/_theme-includes/_blog/pagination.html +39 -0
  5. data/_includes/_theme-includes/_footer/backup.html +71 -0
  6. data/_includes/_theme-includes/_footer/footer.html +54 -0
  7. data/_includes/_theme-includes/_head/ascii-art.html +11 -0
  8. data/_includes/_theme-includes/_head/head.html +24 -0
  9. data/_includes/_theme-includes/_navigation/_sub-navigation/tabbed-nav.html +150 -0
  10. data/_includes/_theme-includes/_navigation/nav.html +55 -0
  11. data/_includes/_theme-includes/_page-structure/breadcrumb.html +51 -0
  12. data/_includes/_theme-includes/_page-structure/old-breadcrumb.html +139 -0
  13. data/_includes/_theme-includes/_script-includes/css.html +1 -0
  14. data/_includes/_theme-includes/_script-includes/gtm/gtm-noscript.html +4 -0
  15. data/_includes/_theme-includes/_script-includes/gtm/gtm-script.html +7 -0
  16. data/_includes/_theme-includes/_script-includes/javascript.html +2 -0
  17. data/_includes/_theme-includes/_third-party/disqus.html +14 -0
  18. data/_includes/_theme-includes/_third-party/mailchimp-homepage.html +38 -0
  19. data/_includes/_theme-includes/_third-party/mailchimp-sub-footer.html +40 -0
  20. data/_includes/_theme-includes/members.html +63 -0
  21. data/_includes/base.html +14 -0
  22. data/_includes/image.html +1 -0
  23. data/_includes/media.html +3 -0
  24. data/_includes/owl-carousel-homepage.html +103 -0
  25. data/_layouts/empty-container-page.html +13 -0
  26. data/_layouts/plain-page.html +11 -0
  27. data/_sass/_bootstrap-compass.scss +9 -0
  28. data/_sass/_bootstrap-mincer.scss +19 -0
  29. data/_sass/_bootstrap-sprockets.scss +9 -0
  30. data/_sass/_bootstrap.scss +56 -0
  31. data/_sass/animations.scss +125 -0
  32. data/_sass/blog.scss +188 -0
  33. data/_sass/bootstrap/_alerts.scss +73 -0
  34. data/_sass/bootstrap/_badges.scss +68 -0
  35. data/_sass/bootstrap/_breadcrumbs.scss +28 -0
  36. data/_sass/bootstrap/_button-groups.scss +244 -0
  37. data/_sass/bootstrap/_buttons.scss +168 -0
  38. data/_sass/bootstrap/_carousel.scss +270 -0
  39. data/_sass/bootstrap/_close.scss +36 -0
  40. data/_sass/bootstrap/_code.scss +69 -0
  41. data/_sass/bootstrap/_component-animations.scss +37 -0
  42. data/_sass/bootstrap/_dropdowns.scss +216 -0
  43. data/_sass/bootstrap/_forms.scss +617 -0
  44. data/_sass/bootstrap/_glyphicons.scss +307 -0
  45. data/_sass/bootstrap/_grid.scss +84 -0
  46. data/_sass/bootstrap/_input-groups.scss +171 -0
  47. data/_sass/bootstrap/_jumbotron.scss +54 -0
  48. data/_sass/bootstrap/_labels.scss +66 -0
  49. data/_sass/bootstrap/_list-group.scss +130 -0
  50. data/_sass/bootstrap/_media.scss +66 -0
  51. data/_sass/bootstrap/_mixins.scss +40 -0
  52. data/_sass/bootstrap/_modals.scss +150 -0
  53. data/_sass/bootstrap/_navbar.scss +662 -0
  54. data/_sass/bootstrap/_navs.scss +242 -0
  55. data/_sass/bootstrap/_normalize.scss +424 -0
  56. data/_sass/bootstrap/_pager.scss +54 -0
  57. data/_sass/bootstrap/_pagination.scss +89 -0
  58. data/_sass/bootstrap/_panels.scss +271 -0
  59. data/_sass/bootstrap/_popovers.scss +131 -0
  60. data/_sass/bootstrap/_print.scss +101 -0
  61. data/_sass/bootstrap/_progress-bars.scss +87 -0
  62. data/_sass/bootstrap/_responsive-embed.scss +35 -0
  63. data/_sass/bootstrap/_responsive-utilities.scss +179 -0
  64. data/_sass/bootstrap/_scaffolding.scss +161 -0
  65. data/_sass/bootstrap/_tables.scss +234 -0
  66. data/_sass/bootstrap/_theme.scss +291 -0
  67. data/_sass/bootstrap/_thumbnails.scss +38 -0
  68. data/_sass/bootstrap/_tooltip.scss +101 -0
  69. data/_sass/bootstrap/_type.scss +298 -0
  70. data/_sass/bootstrap/_utilities.scss +55 -0
  71. data/_sass/bootstrap/_variables.scss +874 -0
  72. data/_sass/bootstrap/_wells.scss +29 -0
  73. data/_sass/bootstrap/mixins/_alerts.scss +14 -0
  74. data/_sass/bootstrap/mixins/_background-variant.scss +12 -0
  75. data/_sass/bootstrap/mixins/_border-radius.scss +18 -0
  76. data/_sass/bootstrap/mixins/_buttons.scss +65 -0
  77. data/_sass/bootstrap/mixins/_center-block.scss +7 -0
  78. data/_sass/bootstrap/mixins/_clearfix.scss +22 -0
  79. data/_sass/bootstrap/mixins/_forms.scss +88 -0
  80. data/_sass/bootstrap/mixins/_gradients.scss +58 -0
  81. data/_sass/bootstrap/mixins/_grid-framework.scss +81 -0
  82. data/_sass/bootstrap/mixins/_grid.scss +122 -0
  83. data/_sass/bootstrap/mixins/_hide-text.scss +21 -0
  84. data/_sass/bootstrap/mixins/_image.scss +33 -0
  85. data/_sass/bootstrap/mixins/_labels.scss +12 -0
  86. data/_sass/bootstrap/mixins/_list-group.scss +32 -0
  87. data/_sass/bootstrap/mixins/_nav-divider.scss +10 -0
  88. data/_sass/bootstrap/mixins/_nav-vertical-align.scss +9 -0
  89. data/_sass/bootstrap/mixins/_opacity.scss +8 -0
  90. data/_sass/bootstrap/mixins/_pagination.scss +24 -0
  91. data/_sass/bootstrap/mixins/_panels.scss +24 -0
  92. data/_sass/bootstrap/mixins/_progress-bar.scss +10 -0
  93. data/_sass/bootstrap/mixins/_reset-filter.scss +8 -0
  94. data/_sass/bootstrap/mixins/_reset-text.scss +18 -0
  95. data/_sass/bootstrap/mixins/_resize.scss +6 -0
  96. data/_sass/bootstrap/mixins/_responsive-visibility.scss +21 -0
  97. data/_sass/bootstrap/mixins/_size.scss +10 -0
  98. data/_sass/bootstrap/mixins/_tab-focus.scss +9 -0
  99. data/_sass/bootstrap/mixins/_table-row.scss +28 -0
  100. data/_sass/bootstrap/mixins/_text-emphasis.scss +12 -0
  101. data/_sass/bootstrap/mixins/_text-overflow.scss +8 -0
  102. data/_sass/bootstrap/mixins/_vendor-prefixes.scss +222 -0
  103. data/_sass/breadcrumb.scss +48 -0
  104. data/_sass/carousel.scss +122 -0
  105. data/_sass/cookieconsent.scss +13 -0
  106. data/_sass/critical.scss +991 -0
  107. data/_sass/fa.scss +2331 -0
  108. data/_sass/flipclock.scss +435 -0
  109. data/_sass/font-awesome.min.scss +4 -0
  110. data/_sass/fonts.scss +7 -0
  111. data/_sass/footer.scss +76 -0
  112. data/_sass/lightbox.scss +213 -0
  113. data/_sass/members-sprite.scss +425 -0
  114. data/_sass/nav.scss +533 -0
  115. data/_sass/openhours.scss +51 -0
  116. data/_sass/owl.carousel.min.scss +6 -0
  117. data/_sass/owl.theme.default.min.scss +6 -0
  118. data/_sass/products.scss +214 -0
  119. data/_sass/projects.scss +34 -0
  120. data/_sass/social-media-icons.scss +71 -0
  121. data/_sass/syntax.scss +65 -0
  122. data/_sass/tables.scss +87 -0
  123. data/_sass/theme.scss +208 -0
  124. data/assets/js/app/main.js +116 -0
  125. data/assets/js/app/mixitup.js +23 -0
  126. data/assets/js/app/search-page.js +41 -0
  127. data/assets/js/app/sticky-navbar.js +65 -0
  128. data/assets/js/vendor/bootstrap.min.js +7 -0
  129. data/assets/js/vendor/cookieconsent.min.js +15 -0
  130. data/assets/js/vendor/flipclock.min.js +2 -0
  131. data/assets/js/vendor/jquery.min.js +4 -0
  132. data/assets/js/vendor/lazysizes.min.js +2 -0
  133. data/assets/js/vendor/lightbox.js +519 -0
  134. data/assets/js/vendor/mc-validate.js +14 -0
  135. data/assets/js/vendor/owl.carousel.min.js +27 -0
  136. data/assets/js/vendor/picturefill.min.js +5 -0
  137. data/assets/js/vendor/shuffle.js +2004 -0
  138. data/assets/vendor.js +0 -0
  139. metadata +377 -0
@@ -0,0 +1,13 @@
1
+ ---
2
+ layout: plain-page
3
+ ---
4
+ {% include _theme-includes/_navigation/_sub-navigation/tabbed-nav.html %}
5
+ <!-- <link href="/assets/main.css" type="text/css"/> -->
6
+ {% css main %}
7
+ <div class="row">
8
+ <div class="container content-container">
9
+
10
+ {{ content }}
11
+
12
+ </div>
13
+ </div>
@@ -0,0 +1,11 @@
1
+ {% include _theme-includes/_head/head.html %}
2
+ <body>
3
+ {% include _theme-includes/_navigation/nav.html %}
4
+ {% include _theme-includes/_page-structure/breadcrumb.html %}
5
+ <div class="container-fluid">
6
+ {{ content }}
7
+ {% include _theme-includes/_footer/footer.html %}
8
+ </div>
9
+ {% include _theme-includes/_script-includes/javascript.html %}
10
+ </body>
11
+ </html>
@@ -0,0 +1,9 @@
1
+ @function twbs-font-path($path) {
2
+ @return font-url($path, true);
3
+ }
4
+
5
+ @function twbs-image-path($path) {
6
+ @return image-url($path, true);
7
+ }
8
+
9
+ $bootstrap-sass-asset-helper: true;
@@ -0,0 +1,19 @@
1
+ // Mincer asset helper functions
2
+ //
3
+ // This must be imported into a .css.ejs.scss file.
4
+ // Then, <% %>-interpolations will be parsed as strings by Sass, and evaluated by EJS after Sass compilation.
5
+
6
+
7
+ @function twbs-font-path($path) {
8
+ // do something like following
9
+ // from "path/to/font.ext#suffix" to "<%- asset_path(path/to/font.ext)) + #suffix %>"
10
+ // from "path/to/font.ext?#suffix" to "<%- asset_path(path/to/font.ext)) + ?#suffix %>"
11
+ // or from "path/to/font.ext" just "<%- asset_path(path/to/font.ext)) %>"
12
+ @return "<%- asset_path("#{$path}".replace(/[#?].*$/, '')) + "#{$path}".replace(/(^[^#?]*)([#?]?.*$)/, '$2') %>";
13
+ }
14
+
15
+ @function twbs-image-path($file) {
16
+ @return "<%- asset_path("#{$file}") %>";
17
+ }
18
+
19
+ $bootstrap-sass-asset-helper: true;
@@ -0,0 +1,9 @@
1
+ @function twbs-font-path($path) {
2
+ @return font-path($path);
3
+ }
4
+
5
+ @function twbs-image-path($path) {
6
+ @return image-path($path);
7
+ }
8
+
9
+ $bootstrap-sass-asset-helper: true;
@@ -0,0 +1,56 @@
1
+ /*!
2
+ * Bootstrap v3.3.7 (http://getbootstrap.com)
3
+ * Copyright 2011-2016 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,125 @@
1
+
2
+ // fade-in animation - fades in on page load.
3
+ @-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
4
+ @-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
5
+ @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
6
+ @-webkit-keyframes rotate {
7
+ from
8
+ {
9
+ -webkit-transform: rotate(0deg);
10
+ }
11
+ to
12
+ {
13
+ -webkit-transform: rotate(360deg);
14
+ }
15
+ }
16
+ @-moz-keyframes rotate {
17
+ from
18
+ {
19
+ -webkit-transform: rotate(0deg);
20
+ }
21
+ to
22
+ {
23
+ -webkit-transform: rotate(360deg);
24
+ }
25
+ }
26
+ @keyframes rotate {
27
+ from
28
+ {
29
+ -webkit-transform: rotate(0deg);
30
+ }
31
+ to
32
+ {
33
+ -webkit-transform: rotate(360deg);
34
+ }
35
+ }
36
+
37
+ .fade-in-one{
38
+ opacity:0; /* make things invisible upon start */
39
+ -webkit-animation:fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
40
+ -moz-animation:fadeIn ease-in 1;
41
+ animation:fadeIn ease-in 1;
42
+
43
+ -webkit-animation-fill-mode:forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
44
+ -moz-animation-fill-mode:forwards;
45
+ animation-fill-mode:forwards;
46
+
47
+ -webkit-animation-duration:0.5s;
48
+ -moz-animation-duration:0.5s;
49
+ animation-duration:0.5s;
50
+
51
+ -webkit-animation-delay: 1s;
52
+ -moz-animation-delay: 1s;
53
+ animation-delay: 1s;
54
+ }
55
+ .fade-in-two{
56
+ opacity:0; /* make things invisible upon start */
57
+ -webkit-animation:fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
58
+ -moz-animation:fadeIn ease-in 1;
59
+ animation:fadeIn ease-in 1;
60
+
61
+ -webkit-animation-fill-mode:forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
62
+ -moz-animation-fill-mode:forwards;
63
+ animation-fill-mode:forwards;
64
+
65
+ -webkit-animation-duration:0.5s;
66
+ -moz-animation-duration:0.5s;
67
+ animation-duration:0.5s;
68
+
69
+ -webkit-animation-delay: 1.5s;
70
+ -moz-animation-delay: 1.5s;
71
+ animation-delay: 1.5s;
72
+ }
73
+ .fade-in-three{
74
+ opacity:0; /* make things invisible upon start */
75
+ -webkit-animation:fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
76
+ -moz-animation:fadeIn ease-in 1;
77
+ animation:fadeIn ease-in 1;
78
+
79
+ -webkit-animation-fill-mode:forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
80
+ -moz-animation-fill-mode:forwards;
81
+ animation-fill-mode:forwards;
82
+
83
+ -webkit-animation-duration:0.5s;
84
+ -moz-animation-duration:0.5s;
85
+ animation-duration:0.5s;
86
+
87
+ -webkit-animation-delay: 2s;
88
+ -moz-animation-delay: 2s;
89
+ animation-delay: 2s;
90
+ }
91
+ .fade-in-four{
92
+ opacity:0; /* make things invisible upon start */
93
+ -webkit-animation:fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
94
+ -moz-animation:fadeIn ease-in 1;
95
+ animation:fadeIn ease-in 1;
96
+
97
+ -webkit-animation-fill-mode:forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
98
+ -moz-animation-fill-mode:forwards;
99
+ animation-fill-mode:forwards;
100
+
101
+ -webkit-animation-duration:0.5s;
102
+ -moz-animation-duration:0.5s;
103
+ animation-duration:0.5s;
104
+
105
+ -webkit-animation-delay: 2.5s;
106
+ -moz-animation-delay: 2.5s;
107
+ animation-delay: 2.5s;
108
+ }
109
+
110
+
111
+ .rotate-img
112
+ {
113
+ -webkit-animation-name: rotate;
114
+ -moz-animation-name: rotate;
115
+ animation-name: rotate;
116
+ -webkit-animation-duration: 30s;
117
+ -moz-animation-duration: 30s;
118
+ animation-duration: 30s;
119
+ -webkit-animation-iteration-count: infinite;
120
+ -moz-animation-iteration-count: infinite;
121
+ animation-iteration-count: infinite;
122
+ -webkit-animation-timing-function: linear;
123
+ -moz-animation-timing-function: linear;
124
+ animation-timing-function: linear;
125
+ }
data/_sass/blog.scss ADDED
@@ -0,0 +1,188 @@
1
+ .full-page-image {
2
+ color:black;
3
+ height:500px;
4
+ width: 100%;
5
+ object-fit: cover;
6
+ display: block;
7
+ }
8
+ .blog-row {
9
+ margin-top: 30px;
10
+ }
11
+ .blog-panel{
12
+ margin-top:50px;
13
+ }
14
+ .blog-panel .panel-primary .panel-heading{
15
+ margin-left: 5px;
16
+ }
17
+ .blog-post-content{
18
+ margin-top: 50px;
19
+ }
20
+ .img-blog{
21
+ height:600px;
22
+ }
23
+ .blog-featured-img-container{
24
+ position: relative;
25
+ }
26
+ .blog-full-page-image-info{
27
+ color: #FFF;
28
+ height: 500px;
29
+ margin-left: auto;
30
+ margin-right: auto;
31
+ z-index: 1;
32
+ text-align: center;
33
+ margin-top: -21px;
34
+ line-height:50px;
35
+ position: relative;
36
+ top: 10vh;
37
+ vertical-align:middle;
38
+ }
39
+ .blog-title {
40
+ width: 50%;
41
+ margin-right: auto;
42
+ margin-left: auto;
43
+ font-size: 56px;
44
+ }
45
+ .blog-post-content .panel-primary {
46
+ border: 1px solid #19947b;
47
+ }
48
+
49
+ .blog-post-content .panel-heading {
50
+ background-color: #19947b;
51
+ color: #fff;
52
+ }
53
+ @media (max-width: 768px) {
54
+ .blog-title {
55
+ font-size: 34px;
56
+ }
57
+ }
58
+ .blog-author-image{
59
+ height: 83px;
60
+ width: 83px;
61
+ border-radius:83px;
62
+ border: 4px solid white;
63
+ }
64
+ .full-page-image-text{
65
+ top:300px;
66
+ position:relative;
67
+ margin-left: auto;
68
+ margin-right: auto;
69
+ z-index: 1;
70
+ line-height:50px;
71
+ vertical-align:middle;
72
+ }
73
+ .blog_content_area{
74
+ border-top: 1px solid $gray-light;
75
+ }
76
+
77
+ .no-padding {
78
+ padding: 0 !important;
79
+ margin: 0 !important;
80
+ }
81
+ .blog-icons{
82
+ border: 1px solid #777777;
83
+ border-radius: 45px;
84
+ width: 34px;
85
+ padding: 5px;
86
+ float: left;
87
+ display: block;
88
+ margin: 5px;
89
+ opacity: .8;
90
+ color: #777777;
91
+ -webkit-transition: all 1s ease;
92
+ transition: all 1s ease;
93
+ }
94
+
95
+ .blog-icons:hover{
96
+ color: $brand-primary;
97
+ border: 1px solid $brand-primary;
98
+ background-color: black;
99
+ opacity: 1;
100
+ transition: all 1s ease;
101
+ }
102
+ .blog-icons:active, .blog-icons:focus{
103
+ border: 1px solid $gray-light;
104
+ border-radius: 45px;
105
+ width: 45px;
106
+ margin: 4px;
107
+ opacity: .8;
108
+ color: $gray-light;
109
+ }
110
+
111
+
112
+ .blog-read-more-btn{
113
+ background-color: white;
114
+ border: 2px solid black;
115
+ border-radius: 0px;
116
+ font-weight: normal;
117
+ color: $gray-base;
118
+ transition: all 1s ease;
119
+ padding: 6px;
120
+ }
121
+ .blog-read-more-btn:hover{
122
+ background-color: $brand-primary;
123
+ color: white;
124
+ transition: all 1s ease;
125
+ }
126
+ .blog-read-more-btn:active, .blog-read-more-btn:focus{
127
+ background-color: $brand-primary;
128
+ color: white;
129
+ transition: all 1s ease;
130
+ }
131
+ a.featured_blog_post_text {
132
+ font-size: 13px;
133
+ line-height: 18px;
134
+ color: black;
135
+ transition: all 1s ease;
136
+ }
137
+ a.featured_blog_post_text:hover{
138
+ font-size: 13px;
139
+ line-height: 18px;
140
+ color: $brand-primary;
141
+ transition: all 1s ease;
142
+ }
143
+
144
+ .blog_post{
145
+ border-bottom: 1px solid $gray-lighter;
146
+ padding-bottom: 13px;
147
+ }
148
+
149
+ .featured_blog_post {
150
+ height: auto;
151
+ margin: 5px;
152
+ border-bottom: 1px solid #f3f3f3;
153
+ padding: 12px;
154
+ }
155
+
156
+ .blog-well {
157
+ background: #222222;
158
+ }
159
+ .btn-blog{
160
+ border: 2px solid $gray-lighter;
161
+ color: black;
162
+ padding: 6px;
163
+ }
164
+ .btn-blog:hover{
165
+ color: $brand-primary;
166
+ }
167
+
168
+ .blog-img {
169
+ margin-top:25px;
170
+ }
171
+
172
+ #blog-background-image{
173
+ background-size: cover;
174
+ height:800px;
175
+ }
176
+
177
+ .post-content ol, .post-content ul {
178
+ line-height: 1.6em;
179
+ font-size: 16px;
180
+ }
181
+ .post_tag {
182
+ background-color: #eee;
183
+ margin: 2px;
184
+ color: #464646;
185
+ }
186
+
187
+ //Pagination centered style
188
+ .pagination-centered { text-align: center;}
@@ -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
+ }