aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/twbs/bootstrap/site/content/docs/5.0/examples/cover
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-09-23 08:33:36 +0000
committerMario <mario@mariovavti.com>2021-09-23 08:33:36 +0000
commita451449766d581978068a5b8f8c1e27f50386ea7 (patch)
tree17388d0d116d3c3a3e14745397b5b3278e933d74 /vendor/twbs/bootstrap/site/content/docs/5.0/examples/cover
parent3347fab105a01f38800a907e7d6281d835a29f5c (diff)
downloadvolse-hubzilla-a451449766d581978068a5b8f8c1e27f50386ea7.tar.gz
volse-hubzilla-a451449766d581978068a5b8f8c1e27f50386ea7.tar.bz2
volse-hubzilla-a451449766d581978068a5b8f8c1e27f50386ea7.zip
Revert "composer update bootstrap to version 5.1.1"
This reverts commit 89e4006b2d84d398e34d407a019854823b1dd37d.
Diffstat (limited to 'vendor/twbs/bootstrap/site/content/docs/5.0/examples/cover')
-rw-r--r--vendor/twbs/bootstrap/site/content/docs/5.0/examples/cover/cover.css53
-rw-r--r--vendor/twbs/bootstrap/site/content/docs/5.0/examples/cover/index.html34
2 files changed, 87 insertions, 0 deletions
diff --git a/vendor/twbs/bootstrap/site/content/docs/5.0/examples/cover/cover.css b/vendor/twbs/bootstrap/site/content/docs/5.0/examples/cover/cover.css
new file mode 100644
index 000000000..87afc3be9
--- /dev/null
+++ b/vendor/twbs/bootstrap/site/content/docs/5.0/examples/cover/cover.css
@@ -0,0 +1,53 @@
+/*
+ * Globals
+ */
+
+
+/* Custom default button */
+.btn-secondary,
+.btn-secondary:hover,
+.btn-secondary:focus {
+ color: #333;
+ text-shadow: none; /* Prevent inheritance from `body` */
+}
+
+
+/*
+ * Base structure
+ */
+
+body {
+ text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
+ box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
+}
+
+.cover-container {
+ max-width: 42em;
+}
+
+
+/*
+ * Header
+ */
+
+.nav-masthead .nav-link {
+ padding: .25rem 0;
+ font-weight: 700;
+ color: rgba(255, 255, 255, .5);
+ background-color: transparent;
+ border-bottom: .25rem solid transparent;
+}
+
+.nav-masthead .nav-link:hover,
+.nav-masthead .nav-link:focus {
+ border-bottom-color: rgba(255, 255, 255, .25);
+}
+
+.nav-masthead .nav-link + .nav-link {
+ margin-left: 1rem;
+}
+
+.nav-masthead .active {
+ color: #fff;
+ border-bottom-color: #fff;
+}
diff --git a/vendor/twbs/bootstrap/site/content/docs/5.0/examples/cover/index.html b/vendor/twbs/bootstrap/site/content/docs/5.0/examples/cover/index.html
new file mode 100644
index 000000000..10362083e
--- /dev/null
+++ b/vendor/twbs/bootstrap/site/content/docs/5.0/examples/cover/index.html
@@ -0,0 +1,34 @@
+---
+layout: examples
+title: Cover Template
+extra_css:
+ - "cover.css"
+html_class: "h-100"
+body_class: "d-flex h-100 text-center text-white bg-dark"
+include_js: false
+---
+
+<div class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column">
+ <header class="mb-auto">
+ <div>
+ <h3 class="float-md-start mb-0">Cover</h3>
+ <nav class="nav nav-masthead justify-content-center float-md-end">
+ <a class="nav-link active" aria-current="page" href="#">Home</a>
+ <a class="nav-link" href="#">Features</a>
+ <a class="nav-link" href="#">Contact</a>
+ </nav>
+ </div>
+ </header>
+
+ <main class="px-3">
+ <h1>Cover your page.</h1>
+ <p class="lead">Cover is a one-page template for building simple and beautiful home pages. Download, edit the text, and add your own fullscreen background photo to make it your own.</p>
+ <p class="lead">
+ <a href="#" class="btn btn-lg btn-secondary fw-bold border-white bg-white">Learn more</a>
+ </p>
+ </main>
+
+ <footer class="mt-auto text-white-50">
+ <p>Cover template for <a href="https://getbootstrap.com/" class="text-white">Bootstrap</a>, by <a href="https://twitter.com/mdo" class="text-white">@mdo</a>.</p>
+ </footer>
+</div>