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.

139 lines
2.2 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. #global-links > li > a {
  38. font-size: small;
  39. }
  40. @media (min-width: 768px) {
  41. .navbar-default .navbar-nav > li.active > a, .navbar-default .navbar-nav > li > a:hover {
  42. border-bottom: 5px solid #eee;
  43. padding-bottom: 25px;
  44. }
  45. }
  46. .navbar-default .navbar-brand, .navbar-default .navbar-brand:hover {
  47. color: #333;
  48. font-weight: bold;
  49. }
  50. .navbar-text {
  51. font-size: small;
  52. }
  53. .page-checks .container-fluid, .page-details .container-fluid {
  54. /* Fluid below 1320px, but max width capped to 1320px ... */
  55. max-width: 1320px;
  56. }
  57. .status {
  58. font-size: 24px;
  59. display: inline-block;
  60. width: 24px;
  61. }
  62. .status.icon-up, .status.icon-started { color: #5cb85c; }
  63. .status.icon-new, .status.icon-paused { color: #CCC; }
  64. .status.icon-grace { color: #f0ad4e; }
  65. .status.icon-down { color: #d9534f; }
  66. .label.label-start {
  67. background-color: #FFF;
  68. color: #117a3f;;
  69. border: 1px solid #117a3f;
  70. }
  71. .label.label-ign {
  72. background: #e0e0e0;
  73. color: #333;
  74. }
  75. .hc-dialog {
  76. background: #FFF;
  77. padding: 2em;
  78. margin-top: 100px;
  79. }
  80. .hc-dialog h1 {
  81. margin: 0;
  82. }
  83. .dialog-body {
  84. margin: 24px 0;
  85. }
  86. pre {
  87. border: 0;
  88. }
  89. .nav-pills > li > a {
  90. color: #888;
  91. }
  92. .jumbotron p {
  93. font-weight: 300;
  94. }
  95. #debug-warning {
  96. background: #eeeeee;
  97. text-align: center;
  98. font-size: small;
  99. padding: 2px 0;
  100. }
  101. .badge-down {
  102. background-color: #d9534f;
  103. }
  104. .dropdown-menu > li.project-item a {
  105. min-width: 200px;
  106. padding: 6px 20px 3px 20px;
  107. }
  108. .project-item .name {
  109. display: inline-block;
  110. max-width: 130px;
  111. white-space: nowrap;
  112. overflow: hidden;
  113. text-overflow: ellipsis;
  114. }