twitter-bootstrap-rails 5.3.0 → 5.4.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +81 -0
- data/README.md +128 -628
- data/app/assets/javascripts/twitter/bootstrap/bootstrap.min.js +3 -3
- data/app/assets/stylesheets/twitter-bootstrap-static/bootstrap.css +3 -3
- data/lib/generators/bootstrap/badge/badge_generator.rb +13 -0
- data/lib/generators/bootstrap/breadcrumb/breadcrumb_generator.rb +13 -0
- data/lib/generators/bootstrap/button/button_generator.rb +13 -0
- data/lib/generators/bootstrap/cdn/cdn_generator.rb +39 -0
- data/lib/generators/bootstrap/cdn_tags.rb +43 -0
- data/lib/generators/bootstrap/dropdown/dropdown_generator.rb +13 -0
- data/lib/generators/bootstrap/features/features_generator.rb +13 -0
- data/lib/generators/bootstrap/footer/footer_generator.rb +13 -0
- data/lib/generators/bootstrap/header/header_generator.rb +13 -0
- data/lib/generators/bootstrap/hero/hero_generator.rb +13 -0
- data/lib/generators/bootstrap/install/install_generator.rb +120 -61
- data/lib/generators/bootstrap/install/templates/application.js +1 -1
- data/lib/generators/bootstrap/install/templates/bootstrap.js +10 -3
- data/lib/generators/bootstrap/install/templates/bootstrap_and_overrides.css +2 -2
- data/lib/generators/bootstrap/jumbotron/jumbotron_generator.rb +13 -0
- data/lib/generators/bootstrap/layout/layout_generator.rb +65 -1
- data/lib/generators/bootstrap/layout/templates/layout.html.erb +14 -9
- data/lib/generators/bootstrap/layout/templates/layout.html.haml +28 -43
- data/lib/generators/bootstrap/layout/templates/layout.html.slim +25 -40
- data/lib/generators/bootstrap/list_group/list_group_generator.rb +13 -0
- data/lib/generators/bootstrap/modal/modal_generator.rb +13 -0
- data/lib/generators/bootstrap/sidebar/sidebar_generator.rb +13 -0
- data/lib/generators/bootstrap/snippets/snippet_base.rb +126 -0
- data/lib/generators/bootstrap/snippets/snippet_catalog.rb +134 -0
- data/lib/generators/bootstrap/snippets/templates/badges/pills.html.erb +10 -0
- data/lib/generators/bootstrap/snippets/templates/badges/subtle.html.erb +10 -0
- data/lib/generators/bootstrap/snippets/templates/badges/subtle_bordered.html.erb +20 -0
- data/lib/generators/bootstrap/snippets/templates/badges/with_avatar.html.erb +34 -0
- data/lib/generators/bootstrap/snippets/templates/badges/with_avatar_divider.html.erb +66 -0
- data/lib/generators/bootstrap/snippets/templates/badges/with_icons.html.erb +26 -0
- data/lib/generators/bootstrap/snippets/templates/breadcrumbs/basic.html.erb +9 -0
- data/lib/generators/bootstrap/snippets/templates/breadcrumbs/chevron.html.erb +18 -0
- data/lib/generators/bootstrap/snippets/templates/breadcrumbs/custom.html.erb +18 -0
- data/lib/generators/bootstrap/snippets/templates/breadcrumbs/with_icons.html.erb +18 -0
- data/lib/generators/bootstrap/snippets/templates/buttons/circle.html.erb +20 -0
- data/lib/generators/bootstrap/snippets/templates/buttons/grid.html.erb +6 -0
- data/lib/generators/bootstrap/snippets/templates/buttons/loading.html.erb +10 -0
- data/lib/generators/bootstrap/snippets/templates/buttons/pills.html.erb +11 -0
- data/lib/generators/bootstrap/snippets/templates/buttons/with_icons.html.erb +14 -0
- data/lib/generators/bootstrap/snippets/templates/dropdowns/calendar.html.erb +156 -0
- data/lib/generators/bootstrap/snippets/templates/dropdowns/mega_menu.html.erb +140 -0
- data/lib/generators/bootstrap/snippets/templates/dropdowns/simple.html.erb +20 -0
- data/lib/generators/bootstrap/snippets/templates/dropdowns/with_icons.html.erb +88 -0
- data/lib/generators/bootstrap/snippets/templates/dropdowns/with_search.html.erb +64 -0
- data/lib/generators/bootstrap/snippets/templates/features/columns_with_icons.html.erb +46 -0
- data/lib/generators/bootstrap/snippets/templates/features/custom_cards.html.erb +79 -0
- data/lib/generators/bootstrap/snippets/templates/features/hanging_icons.html.erb +41 -0
- data/lib/generators/bootstrap/snippets/templates/features/icon_grid.html.erb +77 -0
- data/lib/generators/bootstrap/snippets/templates/features/with_title.html.erb +50 -0
- data/lib/generators/bootstrap/snippets/templates/footers/columns.html.erb +43 -0
- data/lib/generators/bootstrap/snippets/templates/footers/simple.html.erb +15 -0
- data/lib/generators/bootstrap/snippets/templates/footers/with_brand.html.erb +22 -0
- data/lib/generators/bootstrap/snippets/templates/footers/with_nav.html.erb +12 -0
- data/lib/generators/bootstrap/snippets/templates/footers/with_newsletter.html.erb +62 -0
- data/lib/generators/bootstrap/snippets/templates/headers/centered.html.erb +15 -0
- data/lib/generators/bootstrap/snippets/templates/headers/dark_double.html.erb +66 -0
- data/lib/generators/bootstrap/snippets/templates/headers/dark_search.html.erb +25 -0
- data/lib/generators/bootstrap/snippets/templates/headers/double.html.erb +28 -0
- data/lib/generators/bootstrap/snippets/templates/headers/grid_dropdown.html.erb +47 -0
- data/lib/generators/bootstrap/snippets/templates/headers/light_search.html.erb +34 -0
- data/lib/generators/bootstrap/snippets/templates/headers/nav_pills.html.erb +11 -0
- data/lib/generators/bootstrap/snippets/templates/headers/with_auth_buttons.html.erb +22 -0
- data/lib/generators/bootstrap/snippets/templates/heroes/centered.html.erb +13 -0
- data/lib/generators/bootstrap/snippets/templates/heroes/centered_screenshot.html.erb +17 -0
- data/lib/generators/bootstrap/snippets/templates/heroes/cropped_image.html.erb +17 -0
- data/lib/generators/bootstrap/snippets/templates/heroes/dark.html.erb +14 -0
- data/lib/generators/bootstrap/snippets/templates/heroes/signup_form.html.erb +26 -0
- data/lib/generators/bootstrap/snippets/templates/heroes/with_image.html.erb +17 -0
- data/lib/generators/bootstrap/snippets/templates/icons/_bootstrap_icons.html.erb +134 -0
- data/lib/generators/bootstrap/snippets/templates/jumbotrons/basic.html.erb +10 -0
- data/lib/generators/bootstrap/snippets/templates/jumbotrons/full_width.html.erb +12 -0
- data/lib/generators/bootstrap/snippets/templates/jumbotrons/placeholder.html.erb +13 -0
- data/lib/generators/bootstrap/snippets/templates/jumbotrons/with_icon.html.erb +22 -0
- data/lib/generators/bootstrap/snippets/templates/list-groups/checkable.html.erb +24 -0
- data/lib/generators/bootstrap/snippets/templates/list-groups/checkboxes.html.erb +45 -0
- data/lib/generators/bootstrap/snippets/templates/list-groups/checkboxes_expanded.html.erb +52 -0
- data/lib/generators/bootstrap/snippets/templates/list-groups/radios.html.erb +32 -0
- data/lib/generators/bootstrap/snippets/templates/list-groups/with_avatars.html.erb +36 -0
- data/lib/generators/bootstrap/snippets/templates/modals/confirm.html.erb +18 -0
- data/lib/generators/bootstrap/snippets/templates/modals/sheet.html.erb +19 -0
- data/lib/generators/bootstrap/snippets/templates/modals/signup.html.erb +44 -0
- data/lib/generators/bootstrap/snippets/templates/modals/whats_new.html.erb +41 -0
- data/lib/generators/bootstrap/snippets/templates/sidebars/collapsible.html.erb +90 -0
- data/lib/generators/bootstrap/snippets/templates/sidebars/dark.html.erb +67 -0
- data/lib/generators/bootstrap/snippets/templates/sidebars/icon_only.html.erb +59 -0
- data/lib/generators/bootstrap/snippets/templates/sidebars/light.html.erb +67 -0
- data/lib/generators/bootstrap/snippets/templates/sidebars/list_group.html.erb +94 -0
- data/lib/generators/bootstrap/starter/starter_generator.rb +37 -0
- data/lib/generators/bootstrap/starter/templates/starter.html.erb +13 -0
- data/lib/twitter/bootstrap/rails/bootstrap.rb +1 -0
- data/lib/twitter/bootstrap/rails/config.rb +54 -0
- data/lib/twitter/bootstrap/rails/engine.rb +0 -8
- data/lib/twitter/bootstrap/rails/version.rb +28 -1
- data/lib/twitter-bootstrap-rails.rb +0 -1
- data/spec/lib/generators/cdn_generator_spec.rb +42 -0
- data/spec/lib/generators/install_generator_spec.rb +148 -0
- data/spec/lib/generators/layout_generator_spec.rb +124 -0
- data/spec/lib/generators/no_hardcoded_versions_spec.rb +45 -0
- data/spec/lib/generators/snippet_generators_spec.rb +201 -0
- data/spec/lib/generators/starter_generator_spec.rb +54 -0
- data/spec/spec_helper.rb +5 -0
- data/spec/support/generator_spec_helper.rb +87 -0
- data/vendor/assets/javascripts/twitter/bootstrap/bootstrap.bundle.min.js +3 -3
- data/vendor/assets/stylesheets/twitter/bootstrap/bootstrap.min.css +3 -3
- metadata +99 -123
- data/app/assets/fonts/glyphicons-halflings-regular.eot +0 -0
- data/app/assets/fonts/glyphicons-halflings-regular.svg +0 -288
- data/app/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/app/assets/fonts/glyphicons-halflings-regular.woff +0 -0
- data/app/assets/fonts/glyphicons-halflings-regular.woff2 +0 -0
- data/app/helpers/glyph_helper.rb +0 -23
- data/lib/generators/bootstrap/install/templates/bootstrap.coffee +0 -3
- data/lib/generators/bootstrap/install/templates/bootstrap_and_overrides.less +0 -21
- data/spec/lib/twitter_bootstrap_rails/glyph_helper_spec.rb +0 -24
- data/vendor/assets/stylesheets/twitter-bootstrap-static/bootstrap.css.erb +0 -6684
- data/vendor/static-source/bootstrap.less +0 -1
- data/vendor/static-source/sprites.less +0 -6
- data/vendor/toolkit/twitter/bootstrap/alerts.less +0 -73
- data/vendor/toolkit/twitter/bootstrap/badges.less +0 -66
- data/vendor/toolkit/twitter/bootstrap/bootstrap.less +0 -55
- data/vendor/toolkit/twitter/bootstrap/breadcrumbs.less +0 -26
- data/vendor/toolkit/twitter/bootstrap/button-groups.less +0 -244
- data/vendor/toolkit/twitter/bootstrap/buttons.less +0 -166
- data/vendor/toolkit/twitter/bootstrap/carousel.less +0 -270
- data/vendor/toolkit/twitter/bootstrap/close.less +0 -34
- data/vendor/toolkit/twitter/bootstrap/code.less +0 -69
- data/vendor/toolkit/twitter/bootstrap/component-animations.less +0 -33
- data/vendor/toolkit/twitter/bootstrap/dropdowns.less +0 -216
- data/vendor/toolkit/twitter/bootstrap/forms.less +0 -613
- data/vendor/toolkit/twitter/bootstrap/glyphicons.less +0 -305
- data/vendor/toolkit/twitter/bootstrap/grid.less +0 -84
- data/vendor/toolkit/twitter/bootstrap/input-groups.less +0 -171
- data/vendor/toolkit/twitter/bootstrap/jumbotron.less +0 -54
- data/vendor/toolkit/twitter/bootstrap/labels.less +0 -64
- data/vendor/toolkit/twitter/bootstrap/list-group.less +0 -130
- data/vendor/toolkit/twitter/bootstrap/media.less +0 -66
- data/vendor/toolkit/twitter/bootstrap/mixins/alerts.less +0 -14
- data/vendor/toolkit/twitter/bootstrap/mixins/background-variant.less +0 -9
- data/vendor/toolkit/twitter/bootstrap/mixins/border-radius.less +0 -18
- data/vendor/toolkit/twitter/bootstrap/mixins/buttons.less +0 -65
- data/vendor/toolkit/twitter/bootstrap/mixins/center-block.less +0 -7
- data/vendor/toolkit/twitter/bootstrap/mixins/clearfix.less +0 -22
- data/vendor/toolkit/twitter/bootstrap/mixins/forms.less +0 -85
- data/vendor/toolkit/twitter/bootstrap/mixins/gradients.less +0 -59
- data/vendor/toolkit/twitter/bootstrap/mixins/grid-framework.less +0 -91
- data/vendor/toolkit/twitter/bootstrap/mixins/grid.less +0 -122
- data/vendor/toolkit/twitter/bootstrap/mixins/hide-text.less +0 -21
- data/vendor/toolkit/twitter/bootstrap/mixins/image.less +0 -33
- data/vendor/toolkit/twitter/bootstrap/mixins/labels.less +0 -12
- data/vendor/toolkit/twitter/bootstrap/mixins/list-group.less +0 -30
- data/vendor/toolkit/twitter/bootstrap/mixins/nav-divider.less +0 -10
- data/vendor/toolkit/twitter/bootstrap/mixins/nav-vertical-align.less +0 -9
- data/vendor/toolkit/twitter/bootstrap/mixins/opacity.less +0 -8
- data/vendor/toolkit/twitter/bootstrap/mixins/pagination.less +0 -24
- data/vendor/toolkit/twitter/bootstrap/mixins/panels.less +0 -24
- data/vendor/toolkit/twitter/bootstrap/mixins/progress-bar.less +0 -10
- data/vendor/toolkit/twitter/bootstrap/mixins/reset-filter.less +0 -8
- data/vendor/toolkit/twitter/bootstrap/mixins/reset-text.less +0 -18
- data/vendor/toolkit/twitter/bootstrap/mixins/resize.less +0 -6
- data/vendor/toolkit/twitter/bootstrap/mixins/responsive-visibility.less +0 -15
- data/vendor/toolkit/twitter/bootstrap/mixins/size.less +0 -10
- data/vendor/toolkit/twitter/bootstrap/mixins/tab-focus.less +0 -9
- data/vendor/toolkit/twitter/bootstrap/mixins/table-row.less +0 -28
- data/vendor/toolkit/twitter/bootstrap/mixins/text-emphasis.less +0 -9
- data/vendor/toolkit/twitter/bootstrap/mixins/text-overflow.less +0 -8
- data/vendor/toolkit/twitter/bootstrap/mixins/vendor-prefixes.less +0 -227
- data/vendor/toolkit/twitter/bootstrap/mixins.less +0 -40
- data/vendor/toolkit/twitter/bootstrap/modals.less +0 -150
- data/vendor/toolkit/twitter/bootstrap/navbar.less +0 -660
- data/vendor/toolkit/twitter/bootstrap/navs.less +0 -242
- data/vendor/toolkit/twitter/bootstrap/normalize.less +0 -424
- data/vendor/toolkit/twitter/bootstrap/pager.less +0 -54
- data/vendor/toolkit/twitter/bootstrap/pagination.less +0 -89
- data/vendor/toolkit/twitter/bootstrap/panels.less +0 -271
- data/vendor/toolkit/twitter/bootstrap/popovers.less +0 -131
- data/vendor/toolkit/twitter/bootstrap/print.less +0 -101
- data/vendor/toolkit/twitter/bootstrap/progress-bars.less +0 -87
- data/vendor/toolkit/twitter/bootstrap/responsive-embed.less +0 -35
- data/vendor/toolkit/twitter/bootstrap/responsive-utilities.less +0 -194
- data/vendor/toolkit/twitter/bootstrap/scaffolding.less +0 -161
- data/vendor/toolkit/twitter/bootstrap/tables.less +0 -234
- data/vendor/toolkit/twitter/bootstrap/theme.less +0 -291
- data/vendor/toolkit/twitter/bootstrap/thumbnails.less +0 -36
- data/vendor/toolkit/twitter/bootstrap/tooltip.less +0 -101
- data/vendor/toolkit/twitter/bootstrap/type.less +0 -302
- data/vendor/toolkit/twitter/bootstrap/utilities.less +0 -55
- data/vendor/toolkit/twitter/bootstrap/variables.less +0 -1751
- data/vendor/toolkit/twitter/bootstrap/wells.less +0 -29
- data/vendor/toolkit/twitter/bootstrap_base.less +0 -2
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
<header class="py-3 mb-3 border-bottom">
|
|
2
|
+
<div class="container-fluid d-grid gap-3 align-items-center" style="grid-template-columns: 1fr 2fr;">
|
|
3
|
+
<div class="dropdown">
|
|
4
|
+
<a href="#" class="d-flex align-items-center col-lg-4 mb-2 mb-lg-0 link-body-emphasis text-decoration-none dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false" aria-label="Bootstrap menu">
|
|
5
|
+
<svg class="bi me-2" width="40" height="32" aria-hidden="true">
|
|
6
|
+
<use xlink:href="#bootstrap"></use>
|
|
7
|
+
</svg>
|
|
8
|
+
</a>
|
|
9
|
+
<ul class="dropdown-menu text-small shadow">
|
|
10
|
+
<li><a class="dropdown-item active" href="#" aria-current="page">Overview</a></li>
|
|
11
|
+
<li><a class="dropdown-item" href="#">Inventory</a></li>
|
|
12
|
+
<li><a class="dropdown-item" href="#">Customers</a></li>
|
|
13
|
+
<li><a class="dropdown-item" href="#">Products</a></li>
|
|
14
|
+
<li>
|
|
15
|
+
<hr class="dropdown-divider">
|
|
16
|
+
</li>
|
|
17
|
+
<li><a class="dropdown-item" href="#">Reports</a></li>
|
|
18
|
+
<li><a class="dropdown-item" href="#">Analytics</a></li>
|
|
19
|
+
</ul>
|
|
20
|
+
</div>
|
|
21
|
+
<div class="d-flex align-items-center">
|
|
22
|
+
<form class="w-100 me-3" role="search">
|
|
23
|
+
<input type="search" class="form-control" placeholder="Search..." aria-label="Search">
|
|
24
|
+
</form>
|
|
25
|
+
<div class="flex-shrink-0 dropdown">
|
|
26
|
+
<a href="#" class="d-block link-body-emphasis text-decoration-none dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">
|
|
27
|
+
<img src="https://github.com/mdo.png" alt="mdo" width="32" height="32" class="rounded-circle">
|
|
28
|
+
</a>
|
|
29
|
+
<ul class="dropdown-menu text-small shadow">
|
|
30
|
+
<li><a class="dropdown-item" href="#">New project...</a></li>
|
|
31
|
+
<li><a class="dropdown-item" href="#">Settings</a></li>
|
|
32
|
+
<li><a class="dropdown-item" href="#">Profile</a></li>
|
|
33
|
+
<li>
|
|
34
|
+
<hr class="dropdown-divider">
|
|
35
|
+
</li>
|
|
36
|
+
<li><a class="dropdown-item" href="#">Sign out</a></li>
|
|
37
|
+
</ul>
|
|
38
|
+
</div>
|
|
39
|
+
</div>
|
|
40
|
+
</div>
|
|
41
|
+
</header>
|
|
42
|
+
<div class="container-fluid pb-3">
|
|
43
|
+
<div class="d-grid gap-3" style="grid-template-columns: 1fr 2fr;">
|
|
44
|
+
<div class="bg-body-tertiary border rounded-3"><br> <br> <br> <br> <br> <br> <br> <br> <br> <br></div>
|
|
45
|
+
<div class="bg-body-tertiary border rounded-3"><br> <br> <br> <br> <br> <br> <br> <br> <br> <br></div>
|
|
46
|
+
</div>
|
|
47
|
+
</div>
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
<header class="p-3 mb-3 border-bottom">
|
|
2
|
+
<div class="container">
|
|
3
|
+
<div class="d-flex flex-wrap align-items-center justify-content-center justify-content-lg-start">
|
|
4
|
+
<a href="/" class="d-flex align-items-center mb-2 mb-lg-0 link-body-emphasis text-decoration-none">
|
|
5
|
+
<svg class="bi me-2" width="40" height="32" role="img" aria-label="Bootstrap">
|
|
6
|
+
<use xlink:href="#bootstrap"></use>
|
|
7
|
+
</svg>
|
|
8
|
+
</a>
|
|
9
|
+
<ul class="nav col-12 col-lg-auto me-lg-auto mb-2 justify-content-center mb-md-0">
|
|
10
|
+
<li><a href="#" class="nav-link px-2 link-secondary">Overview</a></li>
|
|
11
|
+
<li><a href="#" class="nav-link px-2 link-body-emphasis">Inventory</a></li>
|
|
12
|
+
<li><a href="#" class="nav-link px-2 link-body-emphasis">Customers</a></li>
|
|
13
|
+
<li><a href="#" class="nav-link px-2 link-body-emphasis">Products</a></li>
|
|
14
|
+
</ul>
|
|
15
|
+
<form class="col-12 col-lg-auto mb-3 mb-lg-0 me-lg-3" role="search">
|
|
16
|
+
<input type="search" class="form-control" placeholder="Search..." aria-label="Search">
|
|
17
|
+
</form>
|
|
18
|
+
<div class="dropdown text-end">
|
|
19
|
+
<a href="#" class="d-block link-body-emphasis text-decoration-none dropdown-toggle" data-bs-toggle="dropdown" aria-expanded="false">
|
|
20
|
+
<img src="https://github.com/mdo.png" alt="mdo" width="32" height="32" class="rounded-circle">
|
|
21
|
+
</a>
|
|
22
|
+
<ul class="dropdown-menu text-small">
|
|
23
|
+
<li><a class="dropdown-item" href="#">New project...</a></li>
|
|
24
|
+
<li><a class="dropdown-item" href="#">Settings</a></li>
|
|
25
|
+
<li><a class="dropdown-item" href="#">Profile</a></li>
|
|
26
|
+
<li>
|
|
27
|
+
<hr class="dropdown-divider">
|
|
28
|
+
</li>
|
|
29
|
+
<li><a class="dropdown-item" href="#">Sign out</a></li>
|
|
30
|
+
</ul>
|
|
31
|
+
</div>
|
|
32
|
+
</div>
|
|
33
|
+
</div>
|
|
34
|
+
</header>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<div class="container">
|
|
2
|
+
<header class="d-flex justify-content-center py-3">
|
|
3
|
+
<ul class="nav nav-pills">
|
|
4
|
+
<li class="nav-item"><a href="#" class="nav-link active" aria-current="page">Home</a></li>
|
|
5
|
+
<li class="nav-item"><a href="#" class="nav-link">Features</a></li>
|
|
6
|
+
<li class="nav-item"><a href="#" class="nav-link">Pricing</a></li>
|
|
7
|
+
<li class="nav-item"><a href="#" class="nav-link">FAQs</a></li>
|
|
8
|
+
<li class="nav-item"><a href="#" class="nav-link">About</a></li>
|
|
9
|
+
</ul>
|
|
10
|
+
</header>
|
|
11
|
+
</div>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<div class="container">
|
|
2
|
+
<header class="d-flex flex-wrap align-items-center justify-content-center justify-content-md-between py-3 mb-4 border-bottom">
|
|
3
|
+
<div class="col-md-3 mb-2 mb-md-0">
|
|
4
|
+
<a href="/" class="d-inline-flex link-body-emphasis text-decoration-none">
|
|
5
|
+
<svg class="bi" width="40" height="32" role="img" aria-label="Bootstrap">
|
|
6
|
+
<use xlink:href="#bootstrap"></use>
|
|
7
|
+
</svg>
|
|
8
|
+
</a>
|
|
9
|
+
</div>
|
|
10
|
+
<ul class="nav col-12 col-md-auto mb-2 justify-content-center mb-md-0">
|
|
11
|
+
<li><a href="#" class="nav-link px-2 link-secondary">Home</a></li>
|
|
12
|
+
<li><a href="#" class="nav-link px-2">Features</a></li>
|
|
13
|
+
<li><a href="#" class="nav-link px-2">Pricing</a></li>
|
|
14
|
+
<li><a href="#" class="nav-link px-2">FAQs</a></li>
|
|
15
|
+
<li><a href="#" class="nav-link px-2">About</a></li>
|
|
16
|
+
</ul>
|
|
17
|
+
<div class="col-md-3 text-end">
|
|
18
|
+
<button type="button" class="btn btn-outline-primary me-2">Login</button>
|
|
19
|
+
<button type="button" class="btn btn-primary">Sign-up</button>
|
|
20
|
+
</div>
|
|
21
|
+
</header>
|
|
22
|
+
</div>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<div class="px-4 py-5 my-5 text-center">
|
|
2
|
+
<img class="d-block mx-auto mb-4" src="/docs/5.3/assets/brand/bootstrap-logo.svg" alt="" width="72" height="57">
|
|
3
|
+
<h1 class="display-5 fw-bold text-body-emphasis">Centered hero</h1>
|
|
4
|
+
<div class="col-lg-6 mx-auto">
|
|
5
|
+
<p class="lead mb-4">
|
|
6
|
+
Quickly design and customize responsive mobile-first sites with Bootstrap, the world’s most popular front-end open source toolkit, featuring Sass variables and mixins, responsive grid system, extensive prebuilt components, and powerful JavaScript plugins.
|
|
7
|
+
</p>
|
|
8
|
+
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center">
|
|
9
|
+
<button type="button" class="btn btn-primary btn-lg px-4 gap-3">Primary button</button>
|
|
10
|
+
<button type="button" class="btn btn-outline-secondary btn-lg px-4">Secondary</button>
|
|
11
|
+
</div>
|
|
12
|
+
</div>
|
|
13
|
+
</div>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<div class="px-4 pt-5 my-5 text-center border-bottom">
|
|
2
|
+
<h1 class="display-4 fw-bold text-body-emphasis">Centered screenshot</h1>
|
|
3
|
+
<div class="col-lg-6 mx-auto">
|
|
4
|
+
<p class="lead mb-4">
|
|
5
|
+
Quickly design and customize responsive mobile-first sites with Bootstrap, the world’s most popular front-end open source toolkit, featuring Sass variables and mixins, responsive grid system, extensive prebuilt components, and powerful JavaScript plugins.
|
|
6
|
+
</p>
|
|
7
|
+
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center mb-5">
|
|
8
|
+
<button type="button" class="btn btn-primary btn-lg px-4 me-sm-3">Primary button</button>
|
|
9
|
+
<button type="button" class="btn btn-outline-secondary btn-lg px-4">Secondary</button>
|
|
10
|
+
</div>
|
|
11
|
+
</div>
|
|
12
|
+
<div class="overflow-hidden" style="max-height: 30vh;">
|
|
13
|
+
<div class="container px-5">
|
|
14
|
+
<img src="bootstrap-docs.png" class="img-fluid border rounded-3 shadow-lg mb-4" alt="Example image" width="700" height="500" loading="lazy">
|
|
15
|
+
</div>
|
|
16
|
+
</div>
|
|
17
|
+
</div>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<div class="container my-5">
|
|
2
|
+
<div class="row p-4 pb-0 pe-lg-0 pt-lg-5 align-items-center rounded-3 border shadow-lg">
|
|
3
|
+
<div class="col-lg-7 p-3 p-lg-5 pt-lg-3">
|
|
4
|
+
<h1 class="display-4 fw-bold lh-1 text-body-emphasis">Border hero with cropped image and shadows</h1>
|
|
5
|
+
<p class="lead">
|
|
6
|
+
Quickly design and customize responsive mobile-first sites with Bootstrap, the world’s most popular front-end open source toolkit, featuring Sass variables and mixins, responsive grid system, extensive prebuilt components, and powerful JavaScript plugins.
|
|
7
|
+
</p>
|
|
8
|
+
<div class="d-grid gap-2 d-md-flex justify-content-md-start mb-4 mb-lg-3">
|
|
9
|
+
<button type="button" class="btn btn-primary btn-lg px-4 me-md-2 fw-bold">Primary</button>
|
|
10
|
+
<button type="button" class="btn btn-outline-secondary btn-lg px-4">Default</button>
|
|
11
|
+
</div>
|
|
12
|
+
</div>
|
|
13
|
+
<div class="col-lg-4 offset-lg-1 p-0 overflow-hidden shadow-lg">
|
|
14
|
+
<img class="rounded-lg-3" src="bootstrap-docs.png" alt="" width="720">
|
|
15
|
+
</div>
|
|
16
|
+
</div>
|
|
17
|
+
</div>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<div class="bg-dark text-secondary px-4 py-5 text-center">
|
|
2
|
+
<div class="py-5">
|
|
3
|
+
<h1 class="display-5 fw-bold text-white">Dark color hero</h1>
|
|
4
|
+
<div class="col-lg-6 mx-auto">
|
|
5
|
+
<p class="fs-5 mb-4">
|
|
6
|
+
Quickly design and customize responsive mobile-first sites with Bootstrap, the world’s most popular front-end open source toolkit, featuring Sass variables and mixins, responsive grid system, extensive prebuilt components, and powerful JavaScript plugins.
|
|
7
|
+
</p>
|
|
8
|
+
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center">
|
|
9
|
+
<button type="button" class="btn btn-outline-info btn-lg px-4 me-sm-3 fw-bold">Custom button</button>
|
|
10
|
+
<button type="button" class="btn btn-outline-light btn-lg px-4">Secondary</button>
|
|
11
|
+
</div>
|
|
12
|
+
</div>
|
|
13
|
+
</div>
|
|
14
|
+
</div>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<div class="container col-xl-10 col-xxl-8 px-4 py-5">
|
|
2
|
+
<div class="row align-items-center g-lg-5 py-5">
|
|
3
|
+
<div class="col-lg-7 text-center text-lg-start">
|
|
4
|
+
<h1 class="display-4 fw-bold lh-1 text-body-emphasis mb-3">Vertically centered hero sign-up form</h1>
|
|
5
|
+
<p class="col-lg-10 fs-4">
|
|
6
|
+
Below is an example form built entirely with Bootstrap’s form controls. Each required form group has a validation state that can be triggered by attempting to submit the form without completing it.
|
|
7
|
+
</p>
|
|
8
|
+
</div>
|
|
9
|
+
<div class="col-md-10 mx-auto col-lg-5">
|
|
10
|
+
<form class="p-4 p-md-5 border rounded-3 bg-body-tertiary">
|
|
11
|
+
<div class="form-floating mb-3">
|
|
12
|
+
<input type="email" class="form-control" id="floatingInput" placeholder="name@example.com">
|
|
13
|
+
<label for="floatingInput">Email address</label>
|
|
14
|
+
</div>
|
|
15
|
+
<div class="form-floating mb-3">
|
|
16
|
+
<input type="password" class="form-control" id="floatingPassword" placeholder="Password">
|
|
17
|
+
<label for="floatingPassword">Password</label>
|
|
18
|
+
</div>
|
|
19
|
+
<div class="checkbox mb-3"><label><input type="checkbox" value="remember-me">Remember me</label></div>
|
|
20
|
+
<button class="w-100 btn btn-lg btn-primary" type="submit">Sign up</button>
|
|
21
|
+
<hr class="my-4">
|
|
22
|
+
<small class="text-body-secondary">By clicking Sign up, you agree to the terms of use.</small>
|
|
23
|
+
</form>
|
|
24
|
+
</div>
|
|
25
|
+
</div>
|
|
26
|
+
</div>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<div class="container col-xxl-8 px-4 py-5">
|
|
2
|
+
<div class="row flex-lg-row-reverse align-items-center g-5 py-5">
|
|
3
|
+
<div class="col-10 col-sm-8 col-lg-6">
|
|
4
|
+
<img src="bootstrap-themes.png" class="d-block mx-lg-auto img-fluid" alt="Bootstrap Themes" width="700" height="500" loading="lazy">
|
|
5
|
+
</div>
|
|
6
|
+
<div class="col-lg-6">
|
|
7
|
+
<h1 class="display-5 fw-bold text-body-emphasis lh-1 mb-3">Responsive left-aligned hero with image</h1>
|
|
8
|
+
<p class="lead">
|
|
9
|
+
Quickly design and customize responsive mobile-first sites with Bootstrap, the world’s most popular front-end open source toolkit, featuring Sass variables and mixins, responsive grid system, extensive prebuilt components, and powerful JavaScript plugins.
|
|
10
|
+
</p>
|
|
11
|
+
<div class="d-grid gap-2 d-md-flex justify-content-md-start">
|
|
12
|
+
<button type="button" class="btn btn-primary btn-lg px-4 me-md-2">Primary</button>
|
|
13
|
+
<button type="button" class="btn btn-outline-secondary btn-lg px-4">Default</button>
|
|
14
|
+
</div>
|
|
15
|
+
</div>
|
|
16
|
+
</div>
|
|
17
|
+
</div>
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
<%# Bootstrap Icons used by the snippets generated by twitter-bootstrap-rails.
|
|
2
|
+
Render this partial once, near the top of <body> in your layout, or the
|
|
3
|
+
icons in those snippets will be blank. %>
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" class="d-none">
|
|
5
|
+
<symbol id="alarm" viewBox="0 0 16 16">
|
|
6
|
+
<path d="M8.5 5.5a.5.5 0 0 0-1 0v3.362l-1.429 2.38a.5.5 0 1 0 .858.515l1.5-2.5A.5.5 0 0 0 8.5 9V5.5z"></path>
|
|
7
|
+
<path d="M6.5 0a.5.5 0 0 0 0 1H7v1.07a7.001 7.001 0 0 0-3.273 12.474l-.602.602a.5.5 0 0 0 .707.708l.746-.746A6.97 6.97 0 0 0 8 16a6.97 6.97 0 0 0 3.422-.892l.746.746a.5.5 0 0 0 .707-.708l-.601-.602A7.001 7.001 0 0 0 9 2.07V1h.5a.5.5 0 0 0 0-1h-3zm1.038 3.018a6.093 6.093 0 0 1 .924 0 6 6 0 1 1-.924 0zM0 3.5c0 .753.333 1.429.86 1.887A8.035 8.035 0 0 1 4.387 1.86 2.5 2.5 0 0 0 0 3.5zM13.5 1c-.753 0-1.429.333-1.887.86a8.035 8.035 0 0 1 3.527 3.527A2.5 2.5 0 0 0 13.5 1z"></path>
|
|
8
|
+
</symbol>
|
|
9
|
+
<symbol id="arrow-left-short" viewBox="0 0 16 16">
|
|
10
|
+
<path fill-rule="evenodd" d="M12 8a.5.5 0 0 1-.5.5H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5H11.5a.5.5 0 0 1 .5.5z"></path>
|
|
11
|
+
</symbol>
|
|
12
|
+
<symbol id="arrow-right-short" viewBox="0 0 16 16">
|
|
13
|
+
<path fill-rule="evenodd" d="M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8z"></path>
|
|
14
|
+
</symbol>
|
|
15
|
+
<symbol id="bookmark-star" viewBox="0 0 16 16">
|
|
16
|
+
<path d="M7.84 4.1a.178.178 0 0 1 .32 0l.634 1.285a.178.178 0 0 0 .134.098l1.42.206c.145.021.204.2.098.303L9.42 6.993a.178.178 0 0 0-.051.158l.242 1.414a.178.178 0 0 1-.258.187l-1.27-.668a.178.178 0 0 0-.165 0l-1.27.668a.178.178 0 0 1-.257-.187l.242-1.414a.178.178 0 0 0-.05-.158l-1.03-1.001a.178.178 0 0 1 .098-.303l1.42-.206a.178.178 0 0 0 .134-.098L7.84 4.1z"></path>
|
|
17
|
+
<path d="M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v13.5a.5.5 0 0 1-.777.416L8 13.101l-5.223 2.815A.5.5 0 0 1 2 15.5V2zm2-1a1 1 0 0 0-1 1v12.566l4.723-2.482a.5.5 0 0 1 .554 0L13 14.566V2a1 1 0 0 0-1-1H4z"></path>
|
|
18
|
+
</symbol>
|
|
19
|
+
<symbol id="bootstrap" viewBox="0 0 118 94">
|
|
20
|
+
<title>Bootstrap</title>
|
|
21
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M24.509 0c-6.733 0-11.715 5.893-11.492 12.284.214 6.14-.064 14.092-2.066 20.577C8.943 39.365 5.547 43.485 0 44.014v5.972c5.547.529 8.943 4.649 10.951 11.153 2.002 6.485 2.28 14.437 2.066 20.577C12.794 88.106 17.776 94 24.51 94H93.5c6.733 0 11.714-5.893 11.491-12.284-.214-6.14.064-14.092 2.066-20.577 2.009-6.504 5.396-10.624 10.943-11.153v-5.972c-5.547-.529-8.934-4.649-10.943-11.153-2.002-6.484-2.28-14.437-2.066-20.577C105.214 5.894 100.233 0 93.5 0H24.508zM80 57.863C80 66.663 73.436 72 62.543 72H44a2 2 0 01-2-2V24a2 2 0 012-2h18.437c9.083 0 15.044 4.92 15.044 12.474 0 5.302-4.01 10.049-9.119 10.88v.277C75.317 46.394 80 51.21 80 57.863zM60.521 28.34H49.948v14.934h8.905c6.884 0 10.68-2.772 10.68-7.727 0-4.643-3.264-7.207-9.012-7.207zM49.948 49.2v16.458H60.91c7.167 0 10.964-2.876 10.964-8.281 0-5.406-3.903-8.178-11.425-8.178H49.948z"></path>
|
|
22
|
+
</symbol>
|
|
23
|
+
<symbol id="calendar-event" viewBox="0 0 16 16">
|
|
24
|
+
<path d="M11 6.5a.5.5 0 0 1 .5-.5h1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1z"></path>
|
|
25
|
+
<path d="M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z"></path>
|
|
26
|
+
</symbol>
|
|
27
|
+
<symbol id="calendar3" viewBox="0 0 16 16">
|
|
28
|
+
<path d="M14 0H2a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zM1 3.857C1 3.384 1.448 3 2 3h12c.552 0 1 .384 1 .857v10.286c0 .473-.448.857-1 .857H2c-.552 0-1-.384-1-.857V3.857z"></path>
|
|
29
|
+
<path d="M6.5 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm-9 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm-9 3a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm3 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2z"></path>
|
|
30
|
+
</symbol>
|
|
31
|
+
<symbol id="check2-circle" viewBox="0 0 16 16">
|
|
32
|
+
<path d="M2.5 8a5.5 5.5 0 0 1 8.25-4.764.5.5 0 0 0 .5-.866A6.5 6.5 0 1 0 14.5 8a.5.5 0 0 0-1 0 5.5 5.5 0 1 1-11 0z"></path>
|
|
33
|
+
<path d="M15.354 3.354a.5.5 0 0 0-.708-.708L8 9.293 5.354 6.646a.5.5 0 1 0-.708.708l3 3a.5.5 0 0 0 .708 0l7-7z"></path>
|
|
34
|
+
</symbol>
|
|
35
|
+
<symbol id="chevron-right" viewBox="0 0 16 16">
|
|
36
|
+
<path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z"></path>
|
|
37
|
+
</symbol>
|
|
38
|
+
<symbol id="collection" viewBox="0 0 16 16">
|
|
39
|
+
<path d="M2.5 3.5a.5.5 0 0 1 0-1h11a.5.5 0 0 1 0 1h-11zm2-2a.5.5 0 0 1 0-1h7a.5.5 0 0 1 0 1h-7zM0 13a1.5 1.5 0 0 0 1.5 1.5h13A1.5 1.5 0 0 0 16 13V6a1.5 1.5 0 0 0-1.5-1.5h-13A1.5 1.5 0 0 0 0 6v7zm1.5.5A.5.5 0 0 1 1 13V6a.5.5 0 0 1 .5-.5h13a.5.5 0 0 1 .5.5v7a.5.5 0 0 1-.5.5h-13z"></path>
|
|
40
|
+
</symbol>
|
|
41
|
+
<symbol id="cpu-fill" viewBox="0 0 16 16">
|
|
42
|
+
<path d="M6.5 6a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5h-3z"></path>
|
|
43
|
+
<path d="M5.5.5a.5.5 0 0 0-1 0V2A2.5 2.5 0 0 0 2 4.5H.5a.5.5 0 0 0 0 1H2v1H.5a.5.5 0 0 0 0 1H2v1H.5a.5.5 0 0 0 0 1H2v1H.5a.5.5 0 0 0 0 1H2A2.5 2.5 0 0 0 4.5 14v1.5a.5.5 0 0 0 1 0V14h1v1.5a.5.5 0 0 0 1 0V14h1v1.5a.5.5 0 0 0 1 0V14h1v1.5a.5.5 0 0 0 1 0V14a2.5 2.5 0 0 0 2.5-2.5h1.5a.5.5 0 0 0 0-1H14v-1h1.5a.5.5 0 0 0 0-1H14v-1h1.5a.5.5 0 0 0 0-1H14v-1h1.5a.5.5 0 0 0 0-1H14A2.5 2.5 0 0 0 11.5 2V.5a.5.5 0 0 0-1 0V2h-1V.5a.5.5 0 0 0-1 0V2h-1V.5a.5.5 0 0 0-1 0V2h-1V.5zm1 4.5h3A1.5 1.5 0 0 1 11 6.5v3A1.5 1.5 0 0 1 9.5 11h-3A1.5 1.5 0 0 1 5 9.5v-3A1.5 1.5 0 0 1 6.5 5z"></path>
|
|
44
|
+
</symbol>
|
|
45
|
+
<symbol id="facebook" viewBox="0 0 16 16">
|
|
46
|
+
<path d="M16 8.049c0-4.446-3.582-8.05-8-8.05C3.58 0-.002 3.603-.002 8.05c0 4.017 2.926 7.347 6.75 7.951v-5.625h-2.03V8.05H6.75V6.275c0-2.017 1.195-3.131 3.022-3.131.876 0 1.791.157 1.791.157v1.98h-1.009c-.993 0-1.303.621-1.303 1.258v1.51h2.218l-.354 2.326H9.25V16c3.824-.604 6.75-3.934 6.75-7.951z"></path>
|
|
47
|
+
</symbol>
|
|
48
|
+
<symbol id="files" viewBox="0 0 16 16">
|
|
49
|
+
<path d="M13 0H6a2 2 0 0 0-2 2 2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h7a2 2 0 0 0 2-2 2 2 0 0 0 2-2V2a2 2 0 0 0-2-2zm0 13V4a2 2 0 0 0-2-2H5a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1zM3 4a1 1 0 0 1 1-1h7a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4z"></path>
|
|
50
|
+
</symbol>
|
|
51
|
+
<symbol id="film" viewBox="0 0 16 16">
|
|
52
|
+
<path d="M0 1a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1V1zm4 0v6h8V1H4zm8 8H4v6h8V9zM1 1v2h2V1H1zm2 3H1v2h2V4zM1 7v2h2V7H1zm2 3H1v2h2v-2zm-2 3v2h2v-2H1zM15 1h-2v2h2V1zm-2 3v2h2V4h-2zm2 3h-2v2h2V7zm-2 3v2h2v-2h-2zm2 3h-2v2h2v-2z"></path>
|
|
53
|
+
</symbol>
|
|
54
|
+
<symbol id="gear-fill" viewBox="0 0 16 16">
|
|
55
|
+
<path d="M9.405 1.05c-.413-1.4-2.397-1.4-2.81 0l-.1.34a1.464 1.464 0 0 1-2.105.872l-.31-.17c-1.283-.698-2.686.705-1.987 1.987l.169.311c.446.82.023 1.841-.872 2.105l-.34.1c-1.4.413-1.4 2.397 0 2.81l.34.1a1.464 1.464 0 0 1 .872 2.105l-.17.31c-.698 1.283.705 2.686 1.987 1.987l.311-.169a1.464 1.464 0 0 1 2.105.872l.1.34c.413 1.4 2.397 1.4 2.81 0l.1-.34a1.464 1.464 0 0 1 2.105-.872l.31.17c1.283.698 2.686-.705 1.987-1.987l-.169-.311a1.464 1.464 0 0 1 .872-2.105l.34-.1c1.4-.413 1.4-2.397 0-2.81l-.34-.1a1.464 1.464 0 0 1-.872-2.105l.17-.31c.698-1.283-.705-2.686-1.987-1.987l-.311.169a1.464 1.464 0 0 1-2.105-.872l-.1-.34zM8 10.93a2.929 2.929 0 1 1 0-5.86 2.929 2.929 0 0 1 0 5.858z"></path>
|
|
56
|
+
</symbol>
|
|
57
|
+
<symbol id="geo-fill" viewBox="0 0 16 16">
|
|
58
|
+
<path fill-rule="evenodd" d="M4 4a4 4 0 1 1 4.5 3.969V13.5a.5.5 0 0 1-1 0V7.97A4 4 0 0 1 4 3.999zm2.493 8.574a.5.5 0 0 1-.411.575c-.712.118-1.28.295-1.655.493a1.319 1.319 0 0 0-.37.265.301.301 0 0 0-.057.09V14l.002.008a.147.147 0 0 0 .016.033.617.617 0 0 0 .145.15c.165.13.435.27.813.395.751.25 1.82.414 3.024.414s2.273-.163 3.024-.414c.378-.126.648-.265.813-.395a.619.619 0 0 0 .146-.15.148.148 0 0 0 .015-.033L12 14v-.004a.301.301 0 0 0-.057-.09 1.318 1.318 0 0 0-.37-.264c-.376-.198-.943-.375-1.655-.493a.5.5 0 1 1 .164-.986c.77.127 1.452.328 1.957.594C12.5 13 13 13.4 13 14c0 .426-.26.752-.544.977-.29.228-.68.413-1.116.558-.878.293-2.059.465-3.34.465-1.281 0-2.462-.172-3.34-.465-.436-.145-.826-.33-1.116-.558C3.26 14.752 3 14.426 3 14c0-.599.5-1 .961-1.243.505-.266 1.187-.467 1.957-.594a.5.5 0 0 1 .575.411z"></path>
|
|
59
|
+
</symbol>
|
|
60
|
+
<symbol id="github" viewBox="0 0 16 16">
|
|
61
|
+
<path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z"></path>
|
|
62
|
+
</symbol>
|
|
63
|
+
<symbol id="google" viewBox="0 0 16 16">
|
|
64
|
+
<path d="M15.545 6.558a9.4 9.4 0 0 1 .139 1.626c0 2.434-.87 4.492-2.384 5.885h.002C11.978 15.292 10.158 16 8 16A8 8 0 1 1 8 0a7.7 7.7 0 0 1 5.352 2.082l-2.284 2.284A4.35 4.35 0 0 0 8 3.166c-2.087 0-3.86 1.408-4.492 3.304a4.8 4.8 0 0 0 0 3.063h.003c.635 1.893 2.405 3.301 4.492 3.301 1.078 0 2.004-.276 2.722-.764h-.003a3.7 3.7 0 0 0 1.599-2.431H8v-3.08z"></path>
|
|
65
|
+
</symbol>
|
|
66
|
+
<symbol id="grid" viewBox="0 0 16 16">
|
|
67
|
+
<path d="M1 2.5A1.5 1.5 0 0 1 2.5 1h3A1.5 1.5 0 0 1 7 2.5v3A1.5 1.5 0 0 1 5.5 7h-3A1.5 1.5 0 0 1 1 5.5v-3zM2.5 2a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5h-3zm6.5.5A1.5 1.5 0 0 1 10.5 1h3A1.5 1.5 0 0 1 15 2.5v3A1.5 1.5 0 0 1 13.5 7h-3A1.5 1.5 0 0 1 9 5.5v-3zm1.5-.5a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5h-3zM1 10.5A1.5 1.5 0 0 1 2.5 9h3A1.5 1.5 0 0 1 7 10.5v3A1.5 1.5 0 0 1 5.5 15h-3A1.5 1.5 0 0 1 1 13.5v-3zm1.5-.5a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5h-3zm6.5.5A1.5 1.5 0 0 1 10.5 9h3a1.5 1.5 0 0 1 1.5 1.5v3a1.5 1.5 0 0 1-1.5 1.5h-3A1.5 1.5 0 0 1 9 13.5v-3zm1.5-.5a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h3a.5.5 0 0 0 .5-.5v-3a.5.5 0 0 0-.5-.5h-3z"></path>
|
|
68
|
+
</symbol>
|
|
69
|
+
<symbol id="grid-fill" viewBox="0 0 16 16">
|
|
70
|
+
<path d="M1 2.5A1.5 1.5 0 0 1 2.5 1h3A1.5 1.5 0 0 1 7 2.5v3A1.5 1.5 0 0 1 5.5 7h-3A1.5 1.5 0 0 1 1 5.5v-3zm8 0A1.5 1.5 0 0 1 10.5 1h3A1.5 1.5 0 0 1 15 2.5v3A1.5 1.5 0 0 1 13.5 7h-3A1.5 1.5 0 0 1 9 5.5v-3zm-8 8A1.5 1.5 0 0 1 2.5 9h3A1.5 1.5 0 0 1 7 10.5v3A1.5 1.5 0 0 1 5.5 15h-3A1.5 1.5 0 0 1 1 13.5v-3zm8 0A1.5 1.5 0 0 1 10.5 9h3a1.5 1.5 0 0 1 1.5 1.5v3a1.5 1.5 0 0 1-1.5 1.5h-3A1.5 1.5 0 0 1 9 13.5v-3z"></path>
|
|
71
|
+
</symbol>
|
|
72
|
+
<symbol id="home" viewBox="0 0 16 16">
|
|
73
|
+
<path d="M8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4.5a.5.5 0 0 0 .5-.5v-4h2v4a.5.5 0 0 0 .5.5H14a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146zM2.5 14V7.707l5.5-5.5 5.5 5.5V14H10v-4a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5v4H2.5z"></path>
|
|
74
|
+
</symbol>
|
|
75
|
+
<symbol id="house-door-fill" viewBox="0 0 16 16">
|
|
76
|
+
<path d="M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5z"></path>
|
|
77
|
+
</symbol>
|
|
78
|
+
<symbol id="image-fill" viewBox="0 0 16 16">
|
|
79
|
+
<path d="M.002 3a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-12a2 2 0 0 1-2-2V3zm1 9v1a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V9.5l-3.777-1.947a.5.5 0 0 0-.577.093l-3.71 3.71-2.66-1.772a.5.5 0 0 0-.63.062L1.002 12zm5-6.5a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0z"></path>
|
|
80
|
+
</symbol>
|
|
81
|
+
<symbol id="instagram" viewBox="0 0 16 16">
|
|
82
|
+
<path d="M8 0C5.829 0 5.556.01 4.703.048 3.85.088 3.269.222 2.76.42a3.917 3.917 0 0 0-1.417.923A3.927 3.927 0 0 0 .42 2.76C.222 3.268.087 3.85.048 4.7.01 5.555 0 5.827 0 8.001c0 2.172.01 2.444.048 3.297.04.852.174 1.433.372 1.942.205.526.478.972.923 1.417.444.445.89.719 1.416.923.51.198 1.09.333 1.942.372C5.555 15.99 5.827 16 8 16s2.444-.01 3.298-.048c.851-.04 1.434-.174 1.943-.372a3.916 3.916 0 0 0 1.416-.923c.445-.445.718-.891.923-1.417.197-.509.332-1.09.372-1.942C15.99 10.445 16 10.173 16 8s-.01-2.445-.048-3.299c-.04-.851-.175-1.433-.372-1.941a3.926 3.926 0 0 0-.923-1.417A3.911 3.911 0 0 0 13.24.42c-.51-.198-1.092-.333-1.943-.372C10.443.01 10.172 0 7.998 0h.003zm-.717 1.442h.718c2.136 0 2.389.007 3.232.046.78.035 1.204.166 1.486.275.373.145.64.319.92.599.28.28.453.546.598.92.11.281.24.705.275 1.485.039.843.047 1.096.047 3.231s-.008 2.389-.047 3.232c-.035.78-.166 1.203-.275 1.485a2.47 2.47 0 0 1-.599.919c-.28.28-.546.453-.92.598-.28.11-.704.24-1.485.276-.843.038-1.096.047-3.232.047s-2.39-.009-3.233-.047c-.78-.036-1.203-.166-1.485-.276a2.478 2.478 0 0 1-.92-.598 2.48 2.48 0 0 1-.6-.92c-.109-.281-.24-.705-.275-1.485-.038-.843-.046-1.096-.046-3.233 0-2.136.008-2.388.046-3.231.036-.78.166-1.204.276-1.486.145-.373.319-.64.599-.92.28-.28.546-.453.92-.598.282-.11.705-.24 1.485-.276.738-.034 1.024-.044 2.515-.045v.002zm4.988 1.328a.96.96 0 1 0 0 1.92.96.96 0 0 0 0-1.92zm-4.27 1.122a4.109 4.109 0 1 0 0 8.217 4.109 4.109 0 0 0 0-8.217zm0 1.441a2.667 2.667 0 1 1 0 5.334 2.667 2.667 0 0 1 0-5.334z"></path>
|
|
83
|
+
</symbol>
|
|
84
|
+
<symbol id="joystick" viewBox="0 0 16 16">
|
|
85
|
+
<path d="M10 2a2 2 0 0 1-1.5 1.937v5.087c.863.083 1.5.377 1.5.726 0 .414-.895.75-2 .75s-2-.336-2-.75c0-.35.637-.643 1.5-.726V3.937A2 2 0 1 1 10 2z"></path>
|
|
86
|
+
<path d="M0 9.665v1.717a1 1 0 0 0 .553.894l6.553 3.277a2 2 0 0 0 1.788 0l6.553-3.277a1 1 0 0 0 .553-.894V9.665c0-.1-.06-.19-.152-.23L9.5 6.715v.993l5.227 2.178a.125.125 0 0 1 .001.23l-5.94 2.546a2 2 0 0 1-1.576 0l-5.94-2.546a.125.125 0 0 1 .001-.23L6.5 7.708l-.013-.988L.152 9.435a.25.25 0 0 0-.152.23z"></path>
|
|
87
|
+
</symbol>
|
|
88
|
+
<symbol id="list-check" viewBox="0 0 16 16">
|
|
89
|
+
<path fill-rule="evenodd" d="M5 11.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5zM3.854 2.146a.5.5 0 0 1 0 .708l-1.5 1.5a.5.5 0 0 1-.708 0l-.5-.5a.5.5 0 1 1 .708-.708L2 3.293l1.146-1.147a.5.5 0 0 1 .708 0zm0 4a.5.5 0 0 1 0 .708l-1.5 1.5a.5.5 0 0 1-.708 0l-.5-.5a.5.5 0 1 1 .708-.708L2 7.293l1.146-1.147a.5.5 0 0 1 .708 0zm0 4a.5.5 0 0 1 0 .708l-1.5 1.5a.5.5 0 0 1-.708 0l-.5-.5a.5.5 0 0 1 .708-.708l.146.147 1.146-1.147a.5.5 0 0 1 .708 0z"></path>
|
|
90
|
+
</symbol>
|
|
91
|
+
<symbol id="music-note-beamed" viewBox="0 0 16 16">
|
|
92
|
+
<path d="M6 13c0 1.105-1.12 2-2.5 2S1 14.105 1 13c0-1.104 1.12-2 2.5-2s2.5.896 2.5 2zm9-2c0 1.105-1.12 2-2.5 2s-2.5-.895-2.5-2 1.12-2 2.5-2 2.5.895 2.5 2z"></path>
|
|
93
|
+
<path fill-rule="evenodd" d="M14 11V2h1v9h-1zM6 3v10H5V3h1z"></path>
|
|
94
|
+
<path d="M5 2.905a1 1 0 0 1 .9-.995l8-.8a1 1 0 0 1 1.1.995V3L5 4V2.905z"></path>
|
|
95
|
+
</symbol>
|
|
96
|
+
<symbol id="people-circle" viewBox="0 0 16 16">
|
|
97
|
+
<path d="M11 6a3 3 0 1 1-6 0 3 3 0 0 1 6 0z"></path>
|
|
98
|
+
<path fill-rule="evenodd" d="M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8zm8-7a7 7 0 0 0-5.468 11.37C3.242 11.226 4.805 10 8 10s4.757 1.225 5.468 2.37A7 7 0 0 0 8 1z"></path>
|
|
99
|
+
</symbol>
|
|
100
|
+
<symbol id="question-circle" viewBox="0 0 16 16">
|
|
101
|
+
<path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z"></path>
|
|
102
|
+
<path d="M5.255 5.786a.237.237 0 0 0 .241.247h.825c.138 0 .248-.113.266-.25.09-.656.54-1.134 1.342-1.134.686 0 1.314.343 1.314 1.168 0 .635-.374.927-.965 1.371-.673.489-1.206 1.06-1.168 1.987l.003.217a.25.25 0 0 0 .25.246h.811a.25.25 0 0 0 .25-.25v-.105c0-.718.273-.927 1.01-1.486.609-.463 1.244-.977 1.244-2.056 0-1.511-1.276-2.241-2.673-2.241-1.267 0-2.655.59-2.75 2.286zm1.557 5.763c0 .533.425.927 1.01.927.609 0 1.028-.394 1.028-.927 0-.552-.42-.94-1.029-.94-.584 0-1.009.388-1.009.94z"></path>
|
|
103
|
+
</symbol>
|
|
104
|
+
<symbol id="speedometer" viewBox="0 0 16 16">
|
|
105
|
+
<path d="M8 2a.5.5 0 0 1 .5.5V4a.5.5 0 0 1-1 0V2.5A.5.5 0 0 1 8 2zM3.732 3.732a.5.5 0 0 1 .707 0l.915.914a.5.5 0 1 1-.708.708l-.914-.915a.5.5 0 0 1 0-.707zM2 8a.5.5 0 0 1 .5-.5h1.586a.5.5 0 0 1 0 1H2.5A.5.5 0 0 1 2 8zm9.5 0a.5.5 0 0 1 .5-.5h1.5a.5.5 0 0 1 0 1H12a.5.5 0 0 1-.5-.5zm.754-4.246a.389.389 0 0 0-.527-.02L7.547 7.31A.91.91 0 1 0 8.85 8.569l3.434-4.297a.389.389 0 0 0-.029-.518z"></path>
|
|
106
|
+
<path fill-rule="evenodd" d="M6.664 15.889A8 8 0 1 1 9.336.11a8 8 0 0 1-2.672 15.78zm-4.665-4.283A11.945 11.945 0 0 1 8 10c2.186 0 4.236.585 6.001 1.606a7 7 0 1 0-12.002 0z"></path>
|
|
107
|
+
</symbol>
|
|
108
|
+
<symbol id="speedometer2" viewBox="0 0 16 16">
|
|
109
|
+
<path d="M8 4a.5.5 0 0 1 .5.5V6a.5.5 0 0 1-1 0V4.5A.5.5 0 0 1 8 4zM3.732 5.732a.5.5 0 0 1 .707 0l.915.914a.5.5 0 1 1-.708.708l-.914-.915a.5.5 0 0 1 0-.707zM2 10a.5.5 0 0 1 .5-.5h1.586a.5.5 0 0 1 0 1H2.5A.5.5 0 0 1 2 10zm9.5 0a.5.5 0 0 1 .5-.5h1.5a.5.5 0 0 1 0 1H12a.5.5 0 0 1-.5-.5zm.754-4.246a.389.389 0 0 0-.527-.02L7.547 9.31a.91.91 0 1 0 1.302 1.258l3.434-4.297a.389.389 0 0 0-.029-.518z"></path>
|
|
110
|
+
<path fill-rule="evenodd" d="M0 10a8 8 0 1 1 15.547 2.661c-.442 1.253-1.845 1.602-2.932 1.25C11.309 13.488 9.475 13 8 13c-1.474 0-3.31.488-4.615.911-1.087.352-2.49.003-2.932-1.25A7.988 7.988 0 0 1 0 10zm8-7a7 7 0 0 0-6.603 9.329c.203.575.923.876 1.68.63C4.397 12.533 6.358 12 8 12s3.604.532 4.923.96c.757.245 1.477-.056 1.68-.631A7 7 0 0 0 8 3z"></path>
|
|
111
|
+
</symbol>
|
|
112
|
+
<symbol id="table" viewBox="0 0 16 16">
|
|
113
|
+
<path d="M0 2a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2zm15 2h-4v3h4V4zm0 4h-4v3h4V8zm0 4h-4v3h3a1 1 0 0 0 1-1v-2zm-5 3v-3H6v3h4zm-5 0v-3H1v2a1 1 0 0 0 1 1h3zm-4-4h4V8H1v3zm0-4h4V4H1v3zm5-3v3h4V4H6zm4 4H6v3h4V8z"></path>
|
|
114
|
+
</symbol>
|
|
115
|
+
<symbol id="toggles2" viewBox="0 0 16 16">
|
|
116
|
+
<path d="M9.465 10H12a2 2 0 1 1 0 4H9.465c.34-.588.535-1.271.535-2 0-.729-.195-1.412-.535-2z"></path>
|
|
117
|
+
<path d="M6 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 1a4 4 0 1 1 0-8 4 4 0 0 1 0 8zm.535-10a3.975 3.975 0 0 1-.409-1H4a1 1 0 0 1 0-2h2.126c.091-.355.23-.69.41-1H4a2 2 0 1 0 0 4h2.535z"></path>
|
|
118
|
+
<path d="M14 4a4 4 0 1 1-8 0 4 4 0 0 1 8 0z"></path>
|
|
119
|
+
</symbol>
|
|
120
|
+
<symbol id="tools" viewBox="0 0 16 16">
|
|
121
|
+
<path d="M1 0L0 1l2.2 3.081a1 1 0 0 0 .815.419h.07a1 1 0 0 1 .708.293l2.675 2.675-2.617 2.654A3.003 3.003 0 0 0 0 13a3 3 0 1 0 5.878-.851l2.654-2.617.968.968-.305.914a1 1 0 0 0 .242 1.023l3.356 3.356a1 1 0 0 0 1.414 0l1.586-1.586a1 1 0 0 0 0-1.414l-3.356-3.356a1 1 0 0 0-1.023-.242L10.5 9.5l-.96-.96 2.68-2.643A3.005 3.005 0 0 0 16 3c0-.269-.035-.53-.102-.777l-2.14 2.141L12 4l-.364-1.757L13.777.102a3 3 0 0 0-3.675 3.68L7.462 6.46 4.793 3.793a1 1 0 0 1-.293-.707v-.071a1 1 0 0 0-.419-.814L1 0zm9.646 10.646a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708zM3 11l.471.242.529.026.287.445.445.287.026.529L5 13l-.242.471-.026.529-.445.287-.287.445-.529.026L3 15l-.471-.242L2 14.732l-.287-.445L1.268 14l-.026-.529L1 13l.242-.471.026-.529.445-.287.287-.445.529-.026L3 11z"></path>
|
|
122
|
+
</symbol>
|
|
123
|
+
<symbol id="trash" viewBox="0 0 16 16">
|
|
124
|
+
<path d="M5.5 5.5A.5.5 0 0 1 6 6v6a.5.5 0 0 1-1 0V6a.5.5 0 0 1 .5-.5zm2.5 0a.5.5 0 0 1 .5.5v6a.5.5 0 0 1-1 0V6a.5.5 0 0 1 .5-.5zm3 .5a.5.5 0 0 0-1 0v6a.5.5 0 0 0 1 0V6z"></path>
|
|
125
|
+
<path fill-rule="evenodd" d="M14.5 3a1 1 0 0 1-1 1H13v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V4h-.5a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1H6a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1h3.5a1 1 0 0 1 1 1v1zM4.118 4 4 4.059V13a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4.059L11.882 4H4.118zM2.5 3V2h11v1h-11z"></path>
|
|
126
|
+
</symbol>
|
|
127
|
+
<symbol id="x-circle-fill" viewBox="0 0 16 16">
|
|
128
|
+
<path d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM5.354 4.646a.5.5 0 1 0-.708.708L7.293 8l-2.647 2.646a.5.5 0 0 0 .708.708L8 8.707l2.646 2.647a.5.5 0 0 0 .708-.708L8.707 8l2.647-2.646a.5.5 0 0 0-.708-.708L8 7.293 5.354 4.646z"></path>
|
|
129
|
+
</symbol>
|
|
130
|
+
<symbol id="x-lg" viewBox="0 0 16 16">
|
|
131
|
+
<path fill-rule="evenodd" d="M13.854 2.146a.5.5 0 0 1 0 .708l-11 11a.5.5 0 0 1-.708-.708l11-11a.5.5 0 0 1 .708 0Z"></path>
|
|
132
|
+
<path fill-rule="evenodd" d="M2.146 2.146a.5.5 0 0 0 0 .708l11 11a.5.5 0 0 0 .708-.708l-11-11a.5.5 0 0 0-.708 0Z"></path>
|
|
133
|
+
</symbol>
|
|
134
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<div class="container my-5">
|
|
2
|
+
<div class="p-5 text-center bg-body-tertiary rounded-3">
|
|
3
|
+
<h1 class="text-body-emphasis">Basic jumbotron</h1>
|
|
4
|
+
<p class="lead">
|
|
5
|
+
This is a simple Bootstrap jumbotron that sits within a
|
|
6
|
+
<code>.container</code>
|
|
7
|
+
, recreated with built-in utility classes.
|
|
8
|
+
</p>
|
|
9
|
+
</div>
|
|
10
|
+
</div>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<div class="my-5">
|
|
2
|
+
<div class="p-5 text-center bg-body-tertiary">
|
|
3
|
+
<div class="container py-5">
|
|
4
|
+
<h1 class="text-body-emphasis">Full-width jumbotron</h1>
|
|
5
|
+
<p class="col-lg-8 mx-auto lead">
|
|
6
|
+
This takes the basic jumbotron above and makes its background edge-to-edge with a
|
|
7
|
+
<code>.container</code>
|
|
8
|
+
inside to align content. Similar to above, it's been recreated with built-in grid and utility classes.
|
|
9
|
+
</p>
|
|
10
|
+
</div>
|
|
11
|
+
</div>
|
|
12
|
+
</div>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<div class="container my-5">
|
|
2
|
+
<div class="position-relative p-5 text-center text-muted bg-body border border-dashed rounded-5">
|
|
3
|
+
<button type="button" class="position-absolute top-0 end-0 p-3 m-3 btn-close bg-secondary bg-opacity-10 rounded-pill" aria-label="Close"></button>
|
|
4
|
+
<svg class="bi mt-5 mb-3" width="48" height="48" aria-hidden="true">
|
|
5
|
+
<use xlink:href="#check2-circle"></use>
|
|
6
|
+
</svg>
|
|
7
|
+
<h1 class="text-body-emphasis">Placeholder jumbotron</h1>
|
|
8
|
+
<p class="col-lg-6 mx-auto mb-4">
|
|
9
|
+
This faded back jumbotron is useful for placeholder content. It's also a great way to add a bit of context to a page or section when no content is available and to encourage visitors to take a specific action.
|
|
10
|
+
</p>
|
|
11
|
+
<button class="btn btn-primary px-5 mb-5" type="button">Call to action</button>
|
|
12
|
+
</div>
|
|
13
|
+
</div>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<div class="container my-5">
|
|
2
|
+
<div class="p-5 text-center bg-body-tertiary rounded-3">
|
|
3
|
+
<svg class="bi mt-4 mb-3" style="color: var(--bs-indigo);" width="100" height="100" aria-hidden="true">
|
|
4
|
+
<use xlink:href="#bootstrap"></use>
|
|
5
|
+
</svg>
|
|
6
|
+
<h1 class="text-body-emphasis">Jumbotron with icon</h1>
|
|
7
|
+
<p class="col-lg-8 mx-auto fs-5 text-muted">
|
|
8
|
+
This is a custom jumbotron featuring an SVG image at the top, some longer text that wraps early thanks to a responsive
|
|
9
|
+
<code>.col-*</code>
|
|
10
|
+
class, and a customized call to action.
|
|
11
|
+
</p>
|
|
12
|
+
<div class="d-inline-flex gap-2 mb-5">
|
|
13
|
+
<button class="d-inline-flex align-items-center btn btn-primary btn-lg px-4 rounded-pill" type="button">
|
|
14
|
+
Call to action
|
|
15
|
+
<svg class="bi ms-2" width="24" height="24" aria-hidden="true">
|
|
16
|
+
<use xlink:href="#arrow-right-short"></use>
|
|
17
|
+
</svg>
|
|
18
|
+
</button>
|
|
19
|
+
<button class="btn btn-outline-secondary btn-lg px-4 rounded-pill" type="button">Secondary link</button>
|
|
20
|
+
</div>
|
|
21
|
+
</div>
|
|
22
|
+
</div>
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<div class="d-flex flex-column flex-md-row p-4 gap-4 py-md-5 align-items-center justify-content-center">
|
|
2
|
+
<div class="list-group list-group-checkable d-grid gap-2 border-0">
|
|
3
|
+
<input class="list-group-item-check pe-none" type="radio" name="listGroupCheckableRadios" id="listGroupCheckableRadios1" value="" checked>
|
|
4
|
+
<label class="list-group-item rounded-3 py-3" for="listGroupCheckableRadios1">
|
|
5
|
+
First radio
|
|
6
|
+
<span class="d-block small opacity-50">With support text underneath to add more detail</span>
|
|
7
|
+
</label>
|
|
8
|
+
<input class="list-group-item-check pe-none" type="radio" name="listGroupCheckableRadios" id="listGroupCheckableRadios2" value="">
|
|
9
|
+
<label class="list-group-item rounded-3 py-3" for="listGroupCheckableRadios2">
|
|
10
|
+
Second radio
|
|
11
|
+
<span class="d-block small opacity-50">Some other text goes here</span>
|
|
12
|
+
</label>
|
|
13
|
+
<input class="list-group-item-check pe-none" type="radio" name="listGroupCheckableRadios" id="listGroupCheckableRadios3" value="">
|
|
14
|
+
<label class="list-group-item rounded-3 py-3" for="listGroupCheckableRadios3">
|
|
15
|
+
Third radio
|
|
16
|
+
<span class="d-block small opacity-50">And we end with another snippet of text</span>
|
|
17
|
+
</label>
|
|
18
|
+
<input class="list-group-item-check pe-none" type="radio" name="listGroupCheckableRadios" id="listGroupCheckableRadios4" value="" disabled>
|
|
19
|
+
<label class="list-group-item rounded-3 py-3" for="listGroupCheckableRadios4">
|
|
20
|
+
Fourth disabled radio
|
|
21
|
+
<span class="d-block small opacity-50">This option is disabled</span>
|
|
22
|
+
</label>
|
|
23
|
+
</div>
|
|
24
|
+
</div>
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
<div class="d-flex flex-column flex-md-row p-4 gap-4 py-md-5 align-items-center justify-content-center">
|
|
2
|
+
<div class="list-group">
|
|
3
|
+
<label class="list-group-item d-flex gap-2">
|
|
4
|
+
<input class="form-check-input flex-shrink-0" type="checkbox" value="" checked>
|
|
5
|
+
<span>
|
|
6
|
+
First checkbox
|
|
7
|
+
<small class="d-block text-body-secondary">With support text underneath to add more detail</small>
|
|
8
|
+
</span>
|
|
9
|
+
</label>
|
|
10
|
+
<label class="list-group-item d-flex gap-2">
|
|
11
|
+
<input class="form-check-input flex-shrink-0" type="checkbox" value="">
|
|
12
|
+
<span>
|
|
13
|
+
Second checkbox
|
|
14
|
+
<small class="d-block text-body-secondary">Some other text goes here</small>
|
|
15
|
+
</span>
|
|
16
|
+
</label>
|
|
17
|
+
<label class="list-group-item d-flex gap-2">
|
|
18
|
+
<input class="form-check-input flex-shrink-0" type="checkbox" value="">
|
|
19
|
+
<span>
|
|
20
|
+
Third checkbox
|
|
21
|
+
<small class="d-block text-body-secondary">And we end with another snippet of text</small>
|
|
22
|
+
</span>
|
|
23
|
+
</label>
|
|
24
|
+
</div>
|
|
25
|
+
<div class="list-group">
|
|
26
|
+
<label class="list-group-item d-flex gap-2">
|
|
27
|
+
<input class="form-check-input flex-shrink-0" type="radio" name="listGroupRadios" id="listGroupRadios1" value="" checked>
|
|
28
|
+
<span>
|
|
29
|
+
First radio
|
|
30
|
+
<small class="d-block text-body-secondary">With support text underneath to add more detail</small>
|
|
31
|
+
</span>
|
|
32
|
+
</label>
|
|
33
|
+
<label class="list-group-item d-flex gap-2">
|
|
34
|
+
<input class="form-check-input flex-shrink-0" type="radio" name="listGroupRadios" id="listGroupRadios2" value="">
|
|
35
|
+
<span>Second radio <small class="d-block text-body-secondary">Some other text goes here</small></span>
|
|
36
|
+
</label>
|
|
37
|
+
<label class="list-group-item d-flex gap-2">
|
|
38
|
+
<input class="form-check-input flex-shrink-0" type="radio" name="listGroupRadios" id="listGroupRadios3" value="">
|
|
39
|
+
<span>
|
|
40
|
+
Third radio
|
|
41
|
+
<small class="d-block text-body-secondary">And we end with another snippet of text</small>
|
|
42
|
+
</span>
|
|
43
|
+
</label>
|
|
44
|
+
</div>
|
|
45
|
+
</div>
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
<div class="d-flex flex-column flex-md-row p-4 gap-4 py-md-5 align-items-center justify-content-center">
|
|
2
|
+
<div class="list-group">
|
|
3
|
+
<label class="list-group-item d-flex gap-3">
|
|
4
|
+
<input class="form-check-input flex-shrink-0" type="checkbox" value="" checked style="font-size: 1.375em;">
|
|
5
|
+
<span class="pt-1 form-checked-content">
|
|
6
|
+
<strong>Finish sales report</strong>
|
|
7
|
+
<small class="d-block text-body-secondary">
|
|
8
|
+
<svg class="bi me-1" width="1em" height="1em" role="img" aria-label="Schedule">
|
|
9
|
+
<use xlink:href="#calendar-event"></use>
|
|
10
|
+
</svg>
|
|
11
|
+
1:00–2:00pm
|
|
12
|
+
</small>
|
|
13
|
+
</span>
|
|
14
|
+
</label>
|
|
15
|
+
<label class="list-group-item d-flex gap-3">
|
|
16
|
+
<input class="form-check-input flex-shrink-0" type="checkbox" value="" style="font-size: 1.375em;">
|
|
17
|
+
<span class="pt-1 form-checked-content">
|
|
18
|
+
<strong>Weekly All Hands</strong>
|
|
19
|
+
<small class="d-block text-body-secondary">
|
|
20
|
+
<svg class="bi me-1" width="1em" height="1em" role="img" aria-label="Schedule">
|
|
21
|
+
<use xlink:href="#calendar-event"></use>
|
|
22
|
+
</svg>
|
|
23
|
+
2:00–2:30pm
|
|
24
|
+
</small>
|
|
25
|
+
</span>
|
|
26
|
+
</label>
|
|
27
|
+
<label class="list-group-item d-flex gap-3">
|
|
28
|
+
<input class="form-check-input flex-shrink-0" type="checkbox" value="" style="font-size: 1.375em;">
|
|
29
|
+
<span class="pt-1 form-checked-content">
|
|
30
|
+
<strong>Out of office</strong>
|
|
31
|
+
<small class="d-block text-body-secondary">
|
|
32
|
+
<svg class="bi me-1" width="1em" height="1em" role="img" aria-label="Reminder">
|
|
33
|
+
<use xlink:href="#alarm"></use>
|
|
34
|
+
</svg>
|
|
35
|
+
Tomorrow
|
|
36
|
+
</small>
|
|
37
|
+
</span>
|
|
38
|
+
</label>
|
|
39
|
+
<label class="list-group-item d-flex gap-3 bg-body-tertiary">
|
|
40
|
+
<input class="form-check-input form-check-input-placeholder bg-body-tertiary flex-shrink-0 pe-none" disabled type="checkbox" value="" style="font-size: 1.375em;">
|
|
41
|
+
<span class="pt-1 form-checked-content">
|
|
42
|
+
<span contenteditable="true" class="w-100">Add new task...</span>
|
|
43
|
+
<small class="d-block text-body-secondary">
|
|
44
|
+
<svg class="bi me-1" width="1em" height="1em" aria-hidden="true">
|
|
45
|
+
<use xlink:href="#list-check"></use>
|
|
46
|
+
</svg>
|
|
47
|
+
Choose list...
|
|
48
|
+
</small>
|
|
49
|
+
</span>
|
|
50
|
+
</label>
|
|
51
|
+
</div>
|
|
52
|
+
</div>
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<div class="d-flex flex-column flex-md-row p-4 gap-4 py-md-5 align-items-center justify-content-center">
|
|
2
|
+
<div class="list-group list-group-radio d-grid gap-2 border-0">
|
|
3
|
+
<div class="position-relative">
|
|
4
|
+
<input class="form-check-input position-absolute top-50 end-0 me-3 fs-5" type="radio" name="listGroupRadioGrid" id="listGroupRadioGrid1" value="" checked>
|
|
5
|
+
<label class="list-group-item py-3 pe-5" for="listGroupRadioGrid1">
|
|
6
|
+
<strong class="fw-semibold">First radio</strong>
|
|
7
|
+
<span class="d-block small opacity-75">With support text underneath to add more detail</span>
|
|
8
|
+
</label>
|
|
9
|
+
</div>
|
|
10
|
+
<div class="position-relative">
|
|
11
|
+
<input class="form-check-input position-absolute top-50 end-0 me-3 fs-5" type="radio" name="listGroupRadioGrid" id="listGroupRadioGrid2" value="">
|
|
12
|
+
<label class="list-group-item py-3 pe-5" for="listGroupRadioGrid2">
|
|
13
|
+
<strong class="fw-semibold">Second radio</strong>
|
|
14
|
+
<span class="d-block small opacity-75">Some other text goes here</span>
|
|
15
|
+
</label>
|
|
16
|
+
</div>
|
|
17
|
+
<div class="position-relative">
|
|
18
|
+
<input class="form-check-input position-absolute top-50 end-0 me-3 fs-5" type="radio" name="listGroupRadioGrid" id="listGroupRadioGrid3" value="">
|
|
19
|
+
<label class="list-group-item py-3 pe-5" for="listGroupRadioGrid3">
|
|
20
|
+
<strong class="fw-semibold">Third radio</strong>
|
|
21
|
+
<span class="d-block small opacity-75">And we end with another snippet of text</span>
|
|
22
|
+
</label>
|
|
23
|
+
</div>
|
|
24
|
+
<div class="position-relative">
|
|
25
|
+
<input class="form-check-input position-absolute top-50 end-0 me-3 fs-5" type="radio" name="listGroupRadioGrid" id="listGroupRadioGrid4" value="" disabled>
|
|
26
|
+
<label class="list-group-item py-3 pe-5" for="listGroupRadioGrid4">
|
|
27
|
+
<strong class="fw-semibold">Fourth disabled radio</strong>
|
|
28
|
+
<span class="d-block small opacity-75">This option is disabled</span>
|
|
29
|
+
</label>
|
|
30
|
+
</div>
|
|
31
|
+
</div>
|
|
32
|
+
</div>
|