_main.scss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. // Main
  2. body {
  3. background: #2a2730;
  4. font-size: $font-size-root;
  5. }
  6. #main {
  7. background-color: #fff;
  8. }
  9. .secondary-footer {
  10. padding: 20px 0;
  11. background: #2a2730;
  12. &,
  13. a {
  14. color: lighten(#2a2730, 70%);
  15. }
  16. a {
  17. font-weight: bold;
  18. }
  19. }
  20. .section {
  21. background: #fff;
  22. padding: 30px 0;
  23. }
  24. .section-sm {
  25. padding: 15px 0;
  26. }
  27. .section-header {
  28. display: inline-block;
  29. margin-bottom: 40px;
  30. position: relative;
  31. &,
  32. > a {
  33. color: $body-color;
  34. }
  35. > a {
  36. &:hover {
  37. text-decoration: none;
  38. color: #999;
  39. }
  40. }
  41. &:after {
  42. display: block;
  43. width: 100%;
  44. position: absolute;
  45. top: 100%;
  46. left: 0;
  47. margin-top: 10px;
  48. content: ' ';
  49. height: 3px;
  50. background: theme-color(success);
  51. }
  52. &:not(:first-of-type) {
  53. margin-top: 1.5rem;
  54. }
  55. .sidebar & {
  56. display: block;
  57. font-size: 1.4rem;
  58. padding-bottom: 10px;
  59. margin-bottom: 20px;
  60. border-bottom: 1px solid $card-border-color;
  61. &:after {
  62. display: none;
  63. }
  64. }
  65. }
  66. .page-header {
  67. background: darken(theme-color(success), 7.5%);
  68. color: #eee;
  69. h1,
  70. a {
  71. color: #fefefe;
  72. }
  73. a {
  74. font-weight: normal;
  75. }
  76. h1 {
  77. margin-bottom: 0;
  78. }
  79. }
  80. /*.form-wrapper {
  81. //padding: 0!important;
  82. }*/
  83. #tripal-pane-close-button {
  84. clip: rect(1px, 1px, 1px, 1px);
  85. position: absolute !important;
  86. height: 1px;
  87. width: 1px;
  88. overflow: hidden;
  89. }
  90. .tabledrag-handle .handle {
  91. margin-right: 10px;
  92. display: inline-block;
  93. font: normal normal normal 14px/1 FontAwesome;
  94. font-size: inherit;
  95. text-rendering: auto;
  96. -webkit-font-smoothing: antialiased;
  97. -moz-osx-font-smoothing: grayscale;
  98. &:before {
  99. content: "\f047";
  100. }
  101. }
  102. .form-group label {
  103. font-weight: bold;
  104. }
  105. .card {
  106. border: 0;
  107. box-shadow: 0 0 1px rgba(#000, .25), 0 2px 4px rgba(#000, .125);
  108. }
  109. .help-button-block {
  110. background: #fff;
  111. color: $gray-800;
  112. position: fixed;
  113. z-index: 1000;
  114. bottom: 0;
  115. right: 30px;
  116. width: 120px;
  117. box-shadow: -1px -1px 4px rgba(0, 0, 0, .2);
  118. // transition: width .2s linear;
  119. &,
  120. .help-button-trigger {
  121. border-top-left-radius: $border-radius;
  122. border-top-right-radius: $border-radius;
  123. }
  124. &.open {
  125. width: 230px;
  126. box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
  127. .help-button-trigger {
  128. background-color: $info;
  129. }
  130. }
  131. }
  132. .help-button-trigger {
  133. padding: 0.5rem 0.75rem;
  134. background-color: $info;
  135. display: block;
  136. width: 100%;
  137. color: #fff;
  138. text-align: center;
  139. text-shadow: 0 0 2px rgba(0, 0, 0, 0.125);
  140. box-shadow: 0 0 2px rgba(0, 0, 0, .125);
  141. &:hover {
  142. color: #fff;
  143. text-decoration: none;
  144. background: darken($info, 4%);
  145. }
  146. }
  147. .help-button-content {
  148. padding: .75rem;
  149. background-color: $gray-100;
  150. max-height: 60vh;
  151. overflow-y: auto;
  152. display: none;
  153. .help-node-title {
  154. color: $gray-700;
  155. }
  156. .help-tab-title {
  157. color: $gray-600;
  158. }
  159. }