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.

167 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: 100px;
  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. color: #AAA;
  16. border-top: 1px solid #eee;
  17. }
  18. .footer ul {
  19. list-style: none;
  20. margin: 32px 0;
  21. padding: 0;
  22. font-size: small;
  23. }
  24. .footer li {
  25. display: inline-block;
  26. margin: 0 10px 0 0;
  27. }
  28. #logo {
  29. max-height: 50px;
  30. margin-top: -16px;
  31. }
  32. #nav-main-sections > li > a {
  33. text-transform: uppercase;
  34. font-size: small;
  35. }
  36. #global-links > li > a {
  37. font-size: small;
  38. }
  39. @media (min-width: 768px) {
  40. .navbar-default .navbar-nav > li.active > a, .navbar-default .navbar-nav > li > a:hover {
  41. border-bottom: 5px solid #eee;
  42. padding-bottom: 25px;
  43. }
  44. }
  45. .navbar-default .navbar-brand, .navbar-default .navbar-brand:hover {
  46. color: #333;
  47. font-weight: bold;
  48. }
  49. .navbar-text {
  50. font-size: small;
  51. }
  52. #nav-sign-up {
  53. padding: 21px 0 21px 15px;
  54. }
  55. #nav-sign-up:hover {
  56. border: 0;
  57. }
  58. #nav-sign-up:focus, #nav-sign-up:active {
  59. outline: none;
  60. }
  61. #nav-sign-up span {
  62. display: inline-block;
  63. color: #1ea65a;
  64. font-weight: bold;
  65. border: 1px solid #1ea65a;
  66. border-radius: 5px;
  67. padding: 8px 16px;
  68. transition: all 0.2s ease;
  69. }
  70. #nav-sign-up:hover span {
  71. color: #fff;
  72. background: #22bc66;
  73. border-color: #22bc66;
  74. }
  75. .page-checks .container-fluid, .page-details .container-fluid {
  76. /* Fluid below 1320px, but max width capped to 1320px ... */
  77. max-width: 1320px;
  78. }
  79. .status {
  80. font-size: 24px;
  81. display: inline-block;
  82. width: 24px;
  83. }
  84. .status.icon-up, .status.icon-started { color: #5cb85c; }
  85. .status.icon-new, .status.icon-paused { color: #CCC; }
  86. .status.icon-grace { color: #f0ad4e; }
  87. .status.icon-down { color: #d9534f; }
  88. .label.label-start {
  89. background-color: #FFF;
  90. color: #117a3f;;
  91. border: 1px solid #117a3f;
  92. }
  93. .label.label-ign {
  94. background: #e0e0e0;
  95. color: #333;
  96. }
  97. .hc-dialog {
  98. background: #FFF;
  99. padding: 2em;
  100. margin-top: 100px;
  101. }
  102. .hc-dialog h1 {
  103. margin: 0;
  104. }
  105. .dialog-body {
  106. margin: 24px 0;
  107. }
  108. pre {
  109. border: 0;
  110. }
  111. .nav-pills > li > a {
  112. color: #888;
  113. }
  114. .jumbotron p {
  115. font-weight: 300;
  116. }
  117. #debug-warning {
  118. background: #eeeeee;
  119. text-align: center;
  120. font-size: small;
  121. padding: 2px 0;
  122. }
  123. .badge-down {
  124. background-color: #d9534f;
  125. }
  126. .dropdown-menu > li.project-item a {
  127. min-width: 200px;
  128. padding: 6px 20px 3px 20px;
  129. }
  130. .project-item .name {
  131. display: inline-block;
  132. max-width: 130px;
  133. white-space: nowrap;
  134. overflow: hidden;
  135. text-overflow: ellipsis;
  136. }