Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.86 KB | None | 0 0
  1. /******************
  2. * GENERAL
  3. ******************/
  4. span.small.text-danger {
  5. display: block;
  6. margin-top: 4px;
  7. }
  8.  
  9. .btn:disabled {
  10. cursor: not-allowed;
  11. }
  12.  
  13. .vdp-datepicker input {
  14. padding-left: 40px;
  15. }
  16.  
  17. .rm-p-l {
  18. padding-left: 0;
  19. }
  20.  
  21. .width-1-3 {
  22. width: 33%;
  23. }
  24.  
  25. .edit-nav-block {
  26. background: #ffffff;
  27. padding: 15px 20px 15px 10px;
  28.  
  29. a {
  30. padding: 0.5rem 0;
  31. line-height: 34px;
  32. color: #8d97ad;
  33. display: block;
  34. &.active {
  35. color: $primary;
  36. }
  37.  
  38. i {
  39. width: 30px;
  40. text-align: center;
  41. }
  42. }
  43. }
  44.  
  45. .form-control-plaintext {
  46. border: 0;
  47. padding-left: 0;
  48. }
  49.  
  50. .inline-radios .custom-control,
  51. .inline-checkboxes .custom-control {
  52. display: inline-block;
  53. margin-right: 15px;
  54.  
  55. &:first-child {
  56. margin-left: 0;
  57. }
  58. }
  59.  
  60. /******************
  61. * TABLE
  62. ******************/
  63. .repeat-row-actions {
  64. line-height: 45px;
  65. min-width: 66px;
  66. text-align: center;
  67.  
  68. i {
  69. font-size: 16px;
  70.  
  71. &:hover {
  72. color: $primary;
  73. cursor: pointer;
  74. }
  75.  
  76. &:last-child {
  77. margin-left: 15px;
  78. }
  79.  
  80. &:first-child {
  81. margin-left: 0;
  82. }
  83. }
  84. }
  85.  
  86. .table tbody tr:last-child td {
  87. border-bottom: 1px solid #ebedf2;
  88. }
  89.  
  90. table .m-modal-wrapper {
  91. display: inline-block;
  92. text-align: left;
  93.  
  94. }
  95.  
  96. .modal-content .modal-header .modal-title {
  97. font-weight: 600;
  98. }
  99.  
  100. /* CANIDATE - CERTIFICATE */
  101. .certificate-table {
  102. .selectCertificate,
  103. .certificateAchievedAt,
  104. .certificateValidUntil {
  105. width: 33%;
  106. }
  107. }
  108.  
  109. .education-table {
  110. .educationName,
  111. .educationLevel {
  112. width: 50%;
  113. }
  114. }
  115.  
  116. /******************
  117. * EXPERIENCES
  118. ******************/
  119.  
  120. .experience-save,
  121. .certificate-save,
  122. .education-save {
  123. margin-top: 1px;
  124. }
  125.  
  126. /******************
  127. * CANDIDATES
  128. ******************/
  129. .candidate-page {
  130. input[type=date]::-webkit-clear-button,
  131. input[type=date]::-webkit-inner-spin-button,
  132. input[type=date]::-webkit-calendar-picker-indicator {
  133. display: none;
  134. }
  135.  
  136. .table thead th {
  137. font-weight: 600;
  138. padding-top: 0;
  139. }
  140.  
  141. .table th:first-child,
  142. .table td:first-child {
  143. padding-left: 0;
  144. }
  145.  
  146. .table th:last-child,
  147. .table td:last-child {
  148. padding-right: 0;
  149. }
  150.  
  151. .gender-radio .form-group {
  152. margin-top: 10px;
  153. margin-bottom: 0;
  154. }
  155.  
  156.  
  157. /* CREATE */
  158. .blacklisted > label:after {
  159. display: inline-block;
  160. font-style: normal;
  161. font-variant: normal;
  162. text-rendering: auto;
  163. -webkit-font-smoothing: antialiased;
  164. font-family: "Font Awesome 5 Pro";
  165. font-weight: 400;
  166. content: "\f071";
  167. color: red;
  168. margin-left: 15px;
  169. }
  170.  
  171. .language-other > label {
  172. display: none;
  173. }
  174.  
  175. .upload-profile {
  176. border: 1px solid #e4e4e4;
  177. display: block;
  178. height: 300px;
  179. text-align: center;
  180.  
  181. &:hover {
  182. border-color: #25b7bc;
  183. cursor: pointer;
  184.  
  185. i,
  186. .upload-text {
  187. color: #25b7bc;
  188. }
  189. }
  190.  
  191. i {
  192. margin: 60px 0 30px;
  193. font-size: 100px;
  194. }
  195.  
  196. .upload-text {
  197. font-size: 24px;
  198. }
  199. }
  200.  
  201. .label-upload-profile {
  202. display: block;
  203. width: 100%;
  204.  
  205. .upload-profile-picture {
  206. border: 1px solid #e4e4e4;
  207. display: block;
  208. height: 300px;
  209. text-align: center;
  210. padding: 15px;
  211.  
  212. &:hover {
  213. border-color: #25b7bc;
  214. cursor: pointer;
  215. }
  216.  
  217. .helper-img {
  218. display: inline-block;
  219. height: 100%;
  220. vertical-align: middle;
  221. }
  222.  
  223. img {
  224. background: #3A6F9A;
  225. vertical-align: middle;
  226. max-height: 300px;
  227. max-width: 100%;
  228. }
  229. }
  230. }
  231.  
  232. .save-candidate {
  233. a {
  234. font-size: 14px;
  235. color: #495057;
  236. }
  237.  
  238. button {
  239. margin-left: 20px;
  240.  
  241. i {
  242. margin-left: 10px;
  243. }
  244. }
  245. }
  246.  
  247. /* EDIT */
  248. .edit-information {
  249. margin-top: 30px;
  250. padding: 20px 15px 10px;
  251. -webkit-box-shadow: 0px 1px 15px 1px rgba(69, 65, 78, 0.08);
  252. box-shadow: 0px 1px 15px 1px rgba(69, 65, 78, 0.08);
  253. background-color: #ffffff;
  254.  
  255. strong {
  256. color: $primary;
  257. }
  258.  
  259. p {
  260. color: #8d97ad;
  261. }
  262. }
  263.  
  264. .note-item {
  265. position: relative;
  266. border-bottom: 1px solid #ebebeb;
  267. padding: 10px 0;
  268. background: #ffffff;
  269.  
  270. &:nth-child(odd) {
  271. background-color: #F7F7F7;
  272. }
  273.  
  274. &:first-child {
  275. border-top: 1px solid #ebebeb;
  276. }
  277.  
  278. .note-info {
  279. i {
  280. font-size: 24px;
  281. margin-bottom: 10px;
  282. color: $primary;
  283. }
  284.  
  285. p {
  286. font-size: 14px;
  287. font-weight: 700;
  288. }
  289. }
  290.  
  291. p {
  292. margin-bottom: 0;
  293. word-break: break-all;
  294. }
  295. }
  296. }
  297.  
  298. /******************
  299. * V-SELECT
  300. ******************/
  301. .v-select.taggable-select .vs__selected {
  302. background: $primary;
  303. border-color: $primary;
  304. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement