Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mikeblum/hugo-now.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/sass
diff options
context:
space:
mode:
authormblum <me@mblum.me>2017-07-05 06:13:47 +0300
committermblum <me@mblum.me>2017-07-05 07:47:48 +0300
commit67bb9915b1cdedc09a49a80c7e4bc89256336c15 (patch)
tree9ccfb7ffa582073defa4d3d4ece9fda6ade36cd8 /sass
parent24aeaa8ea71831072243f0705e7ff78560c1cacb (diff)
[JAVASCRIPT] support for Bootstrap 4 javascript and a post on the exampleSite demoing it
Diffstat (limited to 'sass')
-rw-r--r--sass/_index.scss56
1 files changed, 56 insertions, 0 deletions
diff --git a/sass/_index.scss b/sass/_index.scss
index 43b7a9e..f4b58ae 100644
--- a/sass/_index.scss
+++ b/sass/_index.scss
@@ -307,6 +307,62 @@ img.card-img-top {
padding-top: 0rem;
}
+/* JS enabled */
+.js-enabled {
+ display: none;
+}
+
+/* Bootstrap Callouts */
+.bd-callout {
+ padding: 1.25rem;
+ margin-top: 1.25rem;
+ margin-bottom: 1.25rem;
+ border: 1px solid #eee;
+ border-left-width: .25rem;
+ border-radius: .25rem
+}
+
+.bd-callout h4 {
+ margin-top: 0;
+ margin-bottom: .25rem
+}
+
+.bd-callout p:last-child {
+ margin-bottom: 0
+}
+
+.bd-callout code {
+ border-radius: .25rem
+}
+
+.bd-callout+.bd-callout {
+ margin-top: -.25rem
+}
+
+.bd-callout-info {
+ border-left-color: #5bc0de
+}
+
+.bd-callout-info h4 {
+ color: #5bc0de
+}
+
+.bd-callout-warning {
+ border-left-color: #f0ad4e
+}
+
+.bd-callout-warning h4 {
+ color: #f0ad4e
+}
+
+.bd-callout-danger {
+ border-left-color: #d9534f
+}
+
+.bd-callout-danger h4 {
+ color: #d9534f
+}
+
.pagination {
display: flex;
justify-content: space-between;