styles.scss 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  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. font-size: 1rem;
  73. }
  74. .field {
  75. margin-bottom: 10px;
  76. color: green;
  77. font-weight: bold;
  78. font-size: 1.25rem;
  79. }
  80. &:before {
  81. top: 50px;
  82. bottom: 0;
  83. position: absolute;
  84. content: " ";
  85. width: 3px;
  86. background-color: #e5e5e5;
  87. left: 50%;
  88. margin-left: -1px;
  89. }
  90. li {
  91. margin-bottom: 20px;
  92. position: relative;
  93. .timeline-badge {
  94. color: #fff;
  95. width: 22px;
  96. height: 22px;
  97. font-size: 1.4em;
  98. text-align: center;
  99. position: absolute;
  100. top: 31px;
  101. left: 50%;
  102. margin-left: -10px;
  103. z-index: 100;
  104. border-radius: 50%;
  105. background: #bbb;
  106. }
  107. .timeline-panel {
  108. width: 45%;
  109. float: left;
  110. padding: 20px;
  111. margin-bottom: 20px;
  112. position: relative;
  113. box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
  114. border-radius: 6px;
  115. color: rgba(0, 0, 0, 0.87);
  116. background: #fff;
  117. .timeline-heading {
  118. margin-bottom: 10px;
  119. font-size: 1.5rem;
  120. }
  121. }
  122. .timeline-panel:before {
  123. position: absolute;
  124. top: 26px;
  125. right: -15px;
  126. display: inline-block;
  127. border-top: 15px solid transparent;
  128. border-left: 15px solid #e4e4e4;
  129. border-right: 0 solid #e4e4e4;
  130. border-bottom: 15px solid transparent;
  131. content: " ";
  132. background: #fff;
  133. }
  134. }
  135. li:before,
  136. li:after {
  137. content: " ";
  138. display: table;
  139. }
  140. li:after {
  141. clear: both;
  142. }
  143. > li > .timeline-badge {
  144. left: 5%;
  145. }
  146. > li > .timeline-panel {
  147. float: right;
  148. width: 89%;
  149. &:before {
  150. border-left-width: 0;
  151. border-right-width: 15px;
  152. left: -15px;
  153. right: auto;
  154. }
  155. &:after {
  156. border-left-width: 0;
  157. border-right-width: 14px;
  158. left: -14px;
  159. right: auto;
  160. }
  161. }
  162. }
  163. .card-wrapper {
  164. .card-header {
  165. width: 80%;
  166. margin: 0 auto;
  167. }
  168. .card-body {
  169. width: 82%;
  170. margin: 0 auto;
  171. }
  172. }
  173. .instrument-calcs {
  174. background: #eee;
  175. }
  176. .instrument-calcs,
  177. .instrument-calcs-summary {
  178. border: 1px solid #999;
  179. padding: 10px;
  180. border-radius: 5px;
  181. h4 {
  182. margin: 0;
  183. font-size: 0.9rem;
  184. }
  185. .field {
  186. margin-bottom: 10px;
  187. font-size: 1.25rem;
  188. font-weight: bold;
  189. color: #375e99;
  190. }
  191. }
  192. .badge-custom {
  193. font-size: 100%;
  194. padding: 0.5em 0.7em;
  195. margin-bottom: 10px;
  196. }
  197. .badge-custom-instrument {
  198. font-size: 1rem;
  199. padding: 0.3em 0.7em;
  200. margin-bottom: 5px;
  201. }
  202. .cete-table-container {
  203. position: relative;
  204. overflow: auto;
  205. width: 100%;
  206. padding: 15px;
  207. table {
  208. background: none;
  209. }
  210. }
  211. .costs-input-small-container,
  212. .costs-input-normal-container {
  213. max-width: 100%;
  214. text-align: left;
  215. margin-right: 5px;
  216. padding-left: 8px;
  217. .input-box-container input {
  218. border-bottom: 1px solid;
  219. }
  220. }
  221. .costs-input-small-container {
  222. width: 80px;
  223. }
  224. .costs-input-normal-container {
  225. width: 180px;
  226. }
  227. .wrapper-costs {
  228. padding: 20px;
  229. }