non-responsive.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. /* Template-specific stuff
  2. *
  3. * Customizations just for the template; these are not necessary for anything
  4. * with disabling the responsiveness.
  5. */
  6. /* Account for fixed navbar */
  7. body {
  8. padding-top: 70px;
  9. padding-bottom: 30px;
  10. min-width: 970px;
  11. }
  12. /* Finesse the page header spacing */
  13. .page-header {
  14. margin-bottom: 30px;
  15. }
  16. .page-header .lead {
  17. margin-bottom: 10px;
  18. }
  19. /* Non-responsive overrides
  20. *
  21. * Utilitze the following CSS to disable the responsive-ness of the container,
  22. * grid system, and navbar.
  23. */
  24. /* Reset the container */
  25. .container {
  26. max-width: none !important;
  27. width: 970px;
  28. }
  29. /* Demonstrate the grids */
  30. .col-xs-4 {
  31. padding-top: 15px;
  32. padding-bottom: 15px;
  33. background-color: #eee;
  34. border: 1px solid #ddd;
  35. background-color: rgba(86,61,124,.15);
  36. border: 1px solid rgba(86,61,124,.2);
  37. }
  38. .container .navbar-header,
  39. .container .navbar-collapse {
  40. margin-right: 0;
  41. margin-left: 0;
  42. }
  43. /* Always float the navbar header */
  44. .navbar-header {
  45. float: left;
  46. }
  47. /* Undo the collapsing navbar */
  48. .navbar-collapse {
  49. display: block !important;
  50. height: auto !important;
  51. padding-bottom: 0;
  52. overflow: visible !important;
  53. }
  54. .navbar-toggle {
  55. display: none;
  56. }
  57. .navbar-collapse {
  58. border-top: 0;
  59. }
  60. .navbar-brand {
  61. margin-left: -15px;
  62. }
  63. /* Always apply the floated nav */
  64. .navbar-nav {
  65. float: left;
  66. margin: 0;
  67. }
  68. .navbar-nav > li {
  69. float: left;
  70. }
  71. .navbar-nav > li > a {
  72. padding: 15px;
  73. }
  74. /* Redeclare since we override the float above */
  75. .navbar-nav.navbar-right {
  76. float: right;
  77. }
  78. /* Undo custom dropdowns */
  79. .navbar .navbar-nav .open .dropdown-menu {
  80. position: absolute;
  81. float: left;
  82. background-color: #fff;
  83. border: 1px solid #cccccc;
  84. border: 1px solid rgba(0, 0, 0, 0.15);
  85. border-width: 0 1px 1px;
  86. border-radius: 0 0 4px 4px;
  87. -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  88. box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  89. }
  90. .navbar-default .navbar-nav .open .dropdown-menu > li > a {
  91. color: #333;
  92. }
  93. .navbar .navbar-nav .open .dropdown-menu > li > a:hover,
  94. .navbar .navbar-nav .open .dropdown-menu > li > a:focus,
  95. .navbar .navbar-nav .open .dropdown-menu > .active > a,
  96. .navbar .navbar-nav .open .dropdown-menu > .active > a:hover,
  97. .navbar .navbar-nav .open .dropdown-menu > .active > a:focus {
  98. color: #fff !important;
  99. background-color: #428bca !important;
  100. }
  101. .navbar .navbar-nav .open .dropdown-menu > .disabled > a,
  102. .navbar .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  103. .navbar .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  104. color: #999 !important;
  105. background-color: transparent !important;
  106. }