bootstrap-source/bootstrap-3.0.3/examples/non-responsive/non-responsive.css
changeset 54 0ded9d7748b7
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/bootstrap-source/bootstrap-3.0.3/examples/non-responsive/non-responsive.css	Fri Dec 20 22:49:16 2013 +0100
     1.3 @@ -0,0 +1,120 @@
     1.4 +/* Template-specific stuff
     1.5 + *
     1.6 + * Customizations just for the template; these are not necessary for anything
     1.7 + * with disabling the responsiveness.
     1.8 + */
     1.9 +
    1.10 +/* Account for fixed navbar */
    1.11 +body {
    1.12 +  padding-top: 70px;
    1.13 +  padding-bottom: 30px;
    1.14 +  min-width: 970px;
    1.15 +}
    1.16 +
    1.17 +/* Finesse the page header spacing */
    1.18 +.page-header {
    1.19 +  margin-bottom: 30px;
    1.20 +}
    1.21 +.page-header .lead {
    1.22 +  margin-bottom: 10px;
    1.23 +}
    1.24 +
    1.25 +
    1.26 +/* Non-responsive overrides
    1.27 + *
    1.28 + * Utilitze the following CSS to disable the responsive-ness of the container,
    1.29 + * grid system, and navbar.
    1.30 + */
    1.31 +
    1.32 +/* Reset the container */
    1.33 +.container {
    1.34 +  max-width: none !important;
    1.35 +  width: 970px;
    1.36 +}
    1.37 +
    1.38 +/* Demonstrate the grids */
    1.39 +.col-xs-4 {
    1.40 +  padding-top: 15px;
    1.41 +  padding-bottom: 15px;
    1.42 +  background-color: #eee;
    1.43 +  border: 1px solid #ddd;
    1.44 +  background-color: rgba(86,61,124,.15);
    1.45 +  border: 1px solid rgba(86,61,124,.2);
    1.46 +}
    1.47 +
    1.48 +.container .navbar-header,
    1.49 +.container .navbar-collapse {
    1.50 +  margin-right: 0;
    1.51 +  margin-left: 0;
    1.52 +}
    1.53 +
    1.54 +/* Always float the navbar header */
    1.55 +.navbar-header {
    1.56 +  float: left;
    1.57 +}
    1.58 +
    1.59 +/* Undo the collapsing navbar */
    1.60 +.navbar-collapse {
    1.61 +  display: block !important;
    1.62 +  height: auto !important;
    1.63 +  padding-bottom: 0;
    1.64 +  overflow: visible !important;
    1.65 +}
    1.66 +
    1.67 +.navbar-toggle {
    1.68 +  display: none;
    1.69 +}
    1.70 +.navbar-collapse {
    1.71 +  border-top: 0;
    1.72 +}
    1.73 +
    1.74 +.navbar-brand {
    1.75 +  margin-left: -15px;
    1.76 +}
    1.77 +
    1.78 +/* Always apply the floated nav */
    1.79 +.navbar-nav {
    1.80 +  float: left;
    1.81 +  margin: 0;
    1.82 +}
    1.83 +.navbar-nav > li {
    1.84 +  float: left;
    1.85 +}
    1.86 +.navbar-nav > li > a {
    1.87 +  padding: 15px;
    1.88 +}
    1.89 +
    1.90 +/* Redeclare since we override the float above */
    1.91 +.navbar-nav.navbar-right {
    1.92 +  float: right;
    1.93 +}
    1.94 +
    1.95 +/* Undo custom dropdowns */
    1.96 +.navbar .navbar-nav .open .dropdown-menu {
    1.97 +  position: absolute;
    1.98 +  float: left;
    1.99 +  background-color: #fff;
   1.100 +  border: 1px solid #cccccc;
   1.101 +  border: 1px solid rgba(0, 0, 0, 0.15);
   1.102 +  border-width: 0 1px 1px;
   1.103 +  border-radius: 0 0 4px 4px;
   1.104 +  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
   1.105 +          box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
   1.106 +}
   1.107 +.navbar-default .navbar-nav .open .dropdown-menu > li > a {
   1.108 +  color: #333;
   1.109 +}
   1.110 +.navbar .navbar-nav .open .dropdown-menu > li > a:hover,
   1.111 +.navbar .navbar-nav .open .dropdown-menu > li > a:focus,
   1.112 +.navbar .navbar-nav .open .dropdown-menu > .active > a,
   1.113 +.navbar .navbar-nav .open .dropdown-menu > .active > a:hover,
   1.114 +.navbar .navbar-nav .open .dropdown-menu > .active > a:focus {
   1.115 +  color: #fff !important;
   1.116 +  background-color: #428bca !important;
   1.117 +}
   1.118 +.navbar .navbar-nav .open .dropdown-menu > .disabled > a,
   1.119 +.navbar .navbar-nav .open .dropdown-menu > .disabled > a:hover,
   1.120 +.navbar .navbar-nav .open .dropdown-menu > .disabled > a:focus {
   1.121 +  color: #999 !important;
   1.122 +  background-color: transparent !important;
   1.123 +}
Impressum Datenschutzerklärung