aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/non-responsive/non-responsive.css
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2014-11-21 15:25:55 -0800
committerMark Otto <[email protected]>2014-11-21 15:25:55 -0800
commitb15ad9920dee44ccb81178456b18bd13fabe7fc9 (patch)
tree447949f5de45f85ad23955b826304f55c10735b2 /docs/examples/non-responsive/non-responsive.css
parent8c954fd13d8aaa799d78ecc9d5f07910c4a2fa67 (diff)
downloadbootstrap-b15ad9920dee44ccb81178456b18bd13fabe7fc9.tar.xz
bootstrap-b15ad9920dee44ccb81178456b18bd13fabe7fc9.zip
drop non responsive example
Diffstat (limited to 'docs/examples/non-responsive/non-responsive.css')
-rw-r--r--docs/examples/non-responsive/non-responsive.css125
1 files changed, 0 insertions, 125 deletions
diff --git a/docs/examples/non-responsive/non-responsive.css b/docs/examples/non-responsive/non-responsive.css
deleted file mode 100644
index c36e82e38..000000000
--- a/docs/examples/non-responsive/non-responsive.css
+++ /dev/null
@@ -1,125 +0,0 @@
-/* Template-specific stuff
- *
- * Customizations just for the template; these are not necessary for anything
- * with disabling the responsiveness.
- */
-
-/* Account for fixed navbar */
-body {
- min-width: 970px;
- padding-top: 70px;
- padding-bottom: 30px;
-}
-
-/* Don't let the lead text change font-size. */
-.lead {
- font-size: 16px;
-}
-
-/* Finesse the page header spacing */
-.page-header {
- margin-bottom: 30px;
-}
-.page-header .lead {
- margin-bottom: 10px;
-}
-
-
-/* Non-responsive overrides
- *
- * Utilitze the following CSS to disable the responsive-ness of the container,
- * grid system, and navbar.
- */
-
-/* Reset the container */
-.container {
- width: 970px;
- max-width: none !important;
-}
-
-/* Demonstrate the grids */
-.col-xs-4 {
- padding-top: 15px;
- padding-bottom: 15px;
- background-color: #eee;
- background-color: rgba(86,61,124,.15);
- border: 1px solid #ddd;
- border: 1px solid rgba(86,61,124,.2);
-}
-
-.container .navbar-header,
-.container .navbar-collapse {
- margin-right: 0;
- margin-left: 0;
-}
-
-/* Always float the navbar header */
-.navbar-header {
- float: left;
-}
-
-/* Undo the collapsing navbar */
-.navbar-collapse {
- display: block !important;
- height: auto !important;
- padding-bottom: 0;
- overflow: visible !important;
-}
-
-.navbar-toggle {
- display: none;
-}
-.navbar-collapse {
- border-top: 0;
-}
-
-.navbar-brand {
- margin-left: -15px;
-}
-
-/* Always apply the floated nav */
-.navbar-nav {
- float: left;
- margin: 0;
-}
-.navbar-nav > li {
- float: left;
-}
-.navbar-nav > li > a {
- padding: 15px;
-}
-
-/* Redeclare since we override the float above */
-.navbar-nav.navbar-right {
- float: right;
-}
-
-/* Undo custom dropdowns */
-.navbar .navbar-nav .open .dropdown-menu {
- position: absolute;
- float: left;
- background-color: #fff;
- border: 1px solid #ccc;
- border: 1px solid rgba(0, 0, 0, .15);
- border-width: 0 1px 1px;
- border-radius: 0 0 4px 4px;
- -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
- box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
-}
-.navbar-default .navbar-nav .open .dropdown-menu > li > a {
- color: #333;
-}
-.navbar .navbar-nav .open .dropdown-menu > li > a:hover,
-.navbar .navbar-nav .open .dropdown-menu > li > a:focus,
-.navbar .navbar-nav .open .dropdown-menu > .active > a,
-.navbar .navbar-nav .open .dropdown-menu > .active > a:hover,
-.navbar .navbar-nav .open .dropdown-menu > .active > a:focus {
- color: #fff !important;
- background-color: #428bca !important;
-}
-.navbar .navbar-nav .open .dropdown-menu > .disabled > a,
-.navbar .navbar-nav .open .dropdown-menu > .disabled > a:hover,
-.navbar .navbar-nav .open .dropdown-menu > .disabled > a:focus {
- color: #999 !important;
- background-color: transparent !important;
-}