You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

113 lines
1.8 KiB

9 years ago
9 years ago
8 years ago
8 years ago
  1. html {
  2. position: relative;
  3. min-height: 100%;
  4. }
  5. body {
  6. /* Margin bottom by footer height */
  7. margin-bottom: 140px;
  8. }
  9. .footer {
  10. position: absolute;
  11. bottom: 0;
  12. width: 100%;
  13. /* Set the fixed height of the footer here */
  14. height: 81px;
  15. line-height: 80px;
  16. color: #AAA;
  17. border-top: 1px solid #eee;
  18. }
  19. .footer ul {
  20. list-style: none;
  21. margin: 0;
  22. padding: 0;
  23. font-size: small;
  24. }
  25. .footer li {
  26. display: inline-block;
  27. margin: 0 10px 0 0;
  28. }
  29. #logo {
  30. max-height: 50px;
  31. margin-top: -16px;
  32. }
  33. #nav-main-sections > li > a {
  34. text-transform: uppercase;
  35. font-size: small;
  36. }
  37. @media (min-width: 768px) {
  38. .navbar-default .navbar-nav > li.active > a, .navbar-default .navbar-nav > li > a:hover {
  39. border-bottom: 5px solid #eee;
  40. padding-bottom: 25px;
  41. }
  42. }
  43. .navbar-text {
  44. font-size: small;
  45. }
  46. .page-checks .container-fluid, .page-details .container-fluid {
  47. /* Fluid below 1320px, but max width capped to 1320px ... */
  48. max-width: 1320px;
  49. }
  50. .status {
  51. font-size: 24px;
  52. display: inline-block;
  53. width: 24px;
  54. }
  55. .status.icon-up, .status.icon-started { color: #5cb85c; }
  56. .status.icon-new, .status.icon-paused { color: #CCC; }
  57. .status.icon-grace { color: #f0ad4e; }
  58. .status.icon-down { color: #d9534f; }
  59. .label-start {
  60. background-color: #FFF;
  61. color: #117a3f;;
  62. border: 1px solid #117a3f;
  63. }
  64. .label-ign {
  65. background: #e0e0e0;
  66. color: #333;
  67. }
  68. .hc-dialog {
  69. background: #FFF;
  70. padding: 2em;
  71. margin-top: 100px;
  72. }
  73. .hc-dialog h1 {
  74. margin: 0;
  75. }
  76. .dialog-body {
  77. margin: 24px 0;
  78. }
  79. pre {
  80. border: 0;
  81. }
  82. .nav-pills > li > a {
  83. color: #888;
  84. }
  85. .jumbotron p {
  86. font-weight: 300;
  87. }
  88. #debug-warning {
  89. background: #eeeeee;
  90. text-align: center;
  91. font-size: small;
  92. padding: 2px 0;
  93. }