styles.scss 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. /* You can add global styles to this file, and also import other style files */
  2. html,
  3. body {
  4. height: 100%;
  5. }
  6. body {
  7. margin: 0;
  8. }
  9. .align-container {
  10. padding: 0 14px;
  11. @media screen and (max-width: 960px) {
  12. padding: 0;
  13. }
  14. @media screen and (max-width: 480px) {
  15. padding: 0;
  16. }
  17. }
  18. .borderless {
  19. border: 0;
  20. border-radius: 0;
  21. }
  22. label {
  23. color: #666;
  24. }
  25. .center-component {
  26. display: inline-block;
  27. margin: 0 auto;
  28. font-size: 0.9rem;
  29. }
  30. .margin-right {
  31. margin-right: 25px;
  32. }
  33. textarea.form-control {
  34. border: 1px solid #ddd;
  35. }
  36. .input-box-container {
  37. display: block;
  38. margin: 0;
  39. position: relative;
  40. border-collapse: separate;
  41. max-width: auto;
  42. input {
  43. font-family: inherit;
  44. line-height: inherit;
  45. padding-left: 25px;
  46. max-width: inherit;
  47. }
  48. p {
  49. position: absolute;
  50. margin-left: 5px;
  51. height: 25px;
  52. display: flex;
  53. align-items: center;
  54. left: -5px;
  55. }
  56. }
  57. .timeline.timeline-simple {
  58. margin-top: 30px;
  59. padding: 0 0 20px;
  60. &:before {
  61. left: 5%;
  62. background-color: #ddd;
  63. }
  64. }
  65. .timeline {
  66. list-style: none;
  67. padding: 20px 0;
  68. position: relative;
  69. margin-top: 30px;
  70. h4 {
  71. margin: 0 !important;
  72. }
  73. .field {
  74. margin-bottom: 10px;
  75. color: #104911;
  76. }
  77. &:before {
  78. top: 50px;
  79. bottom: 0;
  80. position: absolute;
  81. content: " ";
  82. width: 3px;
  83. background-color: #e5e5e5;
  84. left: 50%;
  85. margin-left: -1px;
  86. }
  87. li {
  88. margin-bottom: 20px;
  89. position: relative;
  90. .timeline-badge {
  91. color: #fff;
  92. width: 22px;
  93. height: 22px;
  94. font-size: 1.4em;
  95. text-align: center;
  96. position: absolute;
  97. top: 31px;
  98. left: 50%;
  99. margin-left: -10px;
  100. z-index: 100;
  101. border-radius: 50%;
  102. background: #bbb;
  103. }
  104. .timeline-panel {
  105. width: 45%;
  106. float: left;
  107. padding: 20px;
  108. margin-bottom: 20px;
  109. position: relative;
  110. box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
  111. border-radius: 6px;
  112. color: rgba(0, 0, 0, 0.87);
  113. background: #fff;
  114. .timeline-heading {
  115. margin-bottom: 10px;
  116. }
  117. }
  118. .timeline-panel:before {
  119. position: absolute;
  120. top: 26px;
  121. right: -15px;
  122. display: inline-block;
  123. border-top: 15px solid transparent;
  124. border-left: 15px solid #e4e4e4;
  125. border-right: 0 solid #e4e4e4;
  126. border-bottom: 15px solid transparent;
  127. content: " ";
  128. background: #fff;
  129. }
  130. }
  131. li:before,
  132. li:after {
  133. content: " ";
  134. display: table;
  135. }
  136. li:after {
  137. clear: both;
  138. }
  139. > li > .timeline-badge {
  140. left: 5%;
  141. }
  142. > li > .timeline-panel {
  143. float: right;
  144. width: 89%;
  145. &:before {
  146. border-left-width: 0;
  147. border-right-width: 15px;
  148. left: -15px;
  149. right: auto;
  150. }
  151. &:after {
  152. border-left-width: 0;
  153. border-right-width: 14px;
  154. left: -14px;
  155. right: auto;
  156. }
  157. }
  158. }
  159. .card-wrapper {
  160. .card-header {
  161. width: 80%;
  162. margin: 0 auto;
  163. }
  164. .card-body {
  165. width: 82%;
  166. margin: 0 auto;
  167. }
  168. }
  169. .instrument-calcs {
  170. border: 1px solid #999;
  171. background: #eee;
  172. padding: 10px;
  173. border-radius: 5px;
  174. h4 {
  175. margin: 0;
  176. font-size: 1rem;
  177. }
  178. .field {
  179. margin-bottom: 10px;
  180. font-size: 1.25rem;
  181. font-weight: bold;
  182. color: #375e99;
  183. }
  184. }
  185. .badge-custom {
  186. font-size: 100%;
  187. padding: 0.5em 0.7em;
  188. margin-bottom: 10px;
  189. }
  190. .cete-table-container {
  191. position: relative;
  192. overflow: auto;
  193. width: 100%;
  194. padding: 15px;
  195. table {
  196. background: none;
  197. }
  198. }