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.

168 lines
2.7 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. #nav-sign-up {
  54. padding: 21px 0 21px 15px;
  55. }
  56. #nav-sign-up:hover {
  57. border: 0;
  58. }
  59. #nav-sign-up:focus, #nav-sign-up:active {
  60. outline: none;
  61. }
  62. #nav-sign-up span {
  63. display: inline-block;
  64. color: #1ea65a;
  65. font-weight: bold;
  66. border: 1px solid #1ea65a;
  67. border-radius: 5px;
  68. padding: 8px 16px;
  69. transition: all 0.2s ease;
  70. }
  71. #nav-sign-up:hover span {
  72. color: #fff;
  73. background: #22bc66;
  74. border-color: #22bc66;
  75. }
  76. .page-checks .container-fluid, .page-details .container-fluid {
  77. /* Fluid below 1320px, but max width capped to 1320px ... */
  78. max-width: 1320px;
  79. }
  80. .status {
  81. font-size: 24px;
  82. display: inline-block;
  83. width: 24px;
  84. }
  85. .status.icon-up, .status.icon-started { color: #5cb85c; }
  86. .status.icon-new, .status.icon-paused { color: #CCC; }
  87. .status.icon-grace { color: #f0ad4e; }
  88. .status.icon-down { color: #d9534f; }
  89. .label.label-start {
  90. background-color: #FFF;
  91. color: #117a3f;;
  92. border: 1px solid #117a3f;
  93. }
  94. .label.label-ign {
  95. background: #e0e0e0;
  96. color: #333;
  97. }
  98. .hc-dialog {
  99. background: #FFF;
  100. padding: 2em;
  101. margin-top: 100px;
  102. }
  103. .hc-dialog h1 {
  104. margin: 0;
  105. }
  106. .dialog-body {
  107. margin: 24px 0;
  108. }
  109. pre {
  110. border: 0;
  111. }
  112. .nav-pills > li > a {
  113. color: #888;
  114. }
  115. .jumbotron p {
  116. font-weight: 300;
  117. }
  118. #debug-warning {
  119. background: #eeeeee;
  120. text-align: center;
  121. font-size: small;
  122. padding: 2px 0;
  123. }
  124. .badge-down {
  125. background-color: #d9534f;
  126. }
  127. .dropdown-menu > li.project-item a {
  128. min-width: 200px;
  129. padding: 6px 20px 3px 20px;
  130. }
  131. .project-item .name {
  132. display: inline-block;
  133. max-width: 130px;
  134. white-space: nowrap;
  135. overflow: hidden;
  136. text-overflow: ellipsis;
  137. }