styles.scss 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471
  1. // themes - our custom or/and out of the box themes
  2. @import 'themes';
  3. // framework component themes (styles tied to theme variables)
  4. @import '~@nebular/theme/styles/globals';
  5. @import '~@nebular/auth/styles/all';
  6. @import '~@nebular/bootstrap/styles/globals';
  7. // ...
  8. // global app font size
  9. @import './font-size';
  10. // loading progress bar theme
  11. @import './pace.theme';
  12. // install the framework and custom global styles
  13. @include nb-install() {
  14. // framework global styles
  15. @include nb-theme-global();
  16. @include nb-auth-global();
  17. @include nb-bootstrap-global();
  18. // loading progress bar
  19. @include ngx-pace-theme();
  20. @include nb-for-theme(default) {
  21. .menu-icon {
  22. font-size: 1.5rem !important;
  23. }
  24. .menu-item {
  25. margin: 10px 0;
  26. }
  27. .titilList {
  28. width: 100%;
  29. border-bottom: 1px solid #05ce9c;
  30. margin: 10px 0;
  31. padding: 10px 0 !important;
  32. float: left;
  33. }
  34. .titilList li {
  35. display: inline-block;
  36. margin: 0 5px;
  37. float: left;
  38. }
  39. .containerContent-w {
  40. margin: 20px 0;
  41. }
  42. .select-filter {
  43. width: 15%;
  44. display: -webkit-inline-box;
  45. margin-left: 10px;
  46. height: 40px !important;
  47. border: 1px solid #a1a1e5;
  48. }
  49. .table thead th {
  50. vertical-align: initial;
  51. }
  52. .table {
  53. margin: 20px 0;
  54. }
  55. .table thead {
  56. background-color:transparent;;
  57. }
  58. .table th {
  59. padding: 0;
  60. text-align: center;
  61. }
  62. .table td {
  63. vertical-align: initial;
  64. padding: 0 0 !important;
  65. }
  66. .table tbody tr {
  67. text-align: center;
  68. }
  69. .table tbody tr:nth-child(odd) {
  70. background-color: #f5f7fc;
  71. transition: all 0.5s;
  72. }
  73. .table tbody tr:hover{
  74. background-color: #f5f7fc;
  75. }
  76. .table-bordered {
  77. border: 1px solid #ccc;
  78. }
  79. .table-bordered th, .table-bordered td {
  80. border: 1px solid #ccc;
  81. }
  82. .defaultStyle:hover {
  83. background-color: #f5f7fc !important;
  84. }
  85. .pagination-control {
  86. position: absolute;
  87. right: 47%;
  88. bottom: 10px;
  89. }
  90. .ngx-pagination .current {
  91. background: #a4abb3;
  92. }
  93. .cardBody {
  94. width: 100%;
  95. padding: 20px 10px;
  96. background-color: #ffffff;
  97. border-radius: 10px;
  98. margin: 20px 0;
  99. }
  100. .textAlignRight {
  101. text-align: right;
  102. }
  103. .defaultStyle {
  104. border: 0 !important;
  105. }
  106. .defaultStyle:hover {
  107. background-color: transparent !important;
  108. }
  109. .formLoop {
  110. border: 1px solid #05ce9c;
  111. padding: 20px !important;
  112. border-radius: 10px !important;
  113. margin: 30px 0;
  114. }
  115. .miniformLoop {
  116. border: 1px solid #05ce9c;
  117. padding: 20px !important;
  118. border-radius: 10px !important;
  119. margin: 30px 20px;
  120. }
  121. .spanReqired-w {
  122. color: red;
  123. padding: 0 5px;
  124. }
  125. }
  126. @include nb-for-theme(corporate) {
  127. .menu-icon {
  128. font-size: 1.5rem !important;
  129. }
  130. .menu-item {
  131. margin: 10px 0;
  132. }
  133. .titilList {
  134. width: 100%;
  135. border-bottom: 1px solid #dcdaea;
  136. margin: 10px 0;
  137. padding: 10px 0 !important;
  138. float: left;
  139. }
  140. .titilList li {
  141. display: inline-block;
  142. margin: 0 5px;
  143. float: left;
  144. }
  145. .containerContent-w {
  146. margin: 20px 0;
  147. }
  148. .select-filter {
  149. width: 15%;
  150. display: -webkit-inline-box;
  151. margin-left: 10px;
  152. height: 40px !important;
  153. border: 1px solid #a1a1e5;
  154. }
  155. .table {
  156. margin: 20px 0;
  157. }
  158. .table thead th {
  159. vertical-align: initial;
  160. }
  161. .table thead {
  162. background-color:transparent;
  163. }
  164. .table th {
  165. padding: 0;
  166. text-align: center;
  167. }
  168. .table td {
  169. vertical-align: initial;
  170. padding: 0 !important;
  171. }
  172. .table tbody tr {
  173. text-align: center;
  174. }
  175. .table tbody tr:nth-child(odd) {
  176. background-color: #f5f7fc;
  177. }
  178. .table-bordered {
  179. border: 1px solid #ccc;
  180. }
  181. .table-bordered th, .table-bordered td {
  182. border: 1px solid #ccc;
  183. }
  184. .cardBody {
  185. width: 100%;
  186. padding: 20px 10px;
  187. background-color: #ffffff;
  188. border-radius: 10px;
  189. margin: 20px 0;
  190. }
  191. .pagination-control {
  192. position: absolute;
  193. right: 47%;
  194. bottom: 10px;
  195. }
  196. .ngx-pagination .current {
  197. background: #a4abb3;
  198. }
  199. .textAlignRight {
  200. text-align: right;
  201. }
  202. .defaultStyle {
  203. border: 0 !important;
  204. }
  205. .defaultStyle:hover {
  206. background-color: transparent !important;
  207. }
  208. .formLoop {
  209. border: 1px solid #05ce9c;
  210. padding: 20px !important;
  211. border-radius: 10px !important;
  212. margin: 30px 0;
  213. }
  214. .miniformLoop {
  215. border: 1px solid #05ce9c;
  216. padding: 20px !important;
  217. border-radius: 10px !important;
  218. margin: 30px 20px;
  219. }
  220. .spanReqired-w {
  221. color: red;
  222. padding: 0 5px;
  223. }
  224. }
  225. @include nb-for-theme(cosmic) {
  226. .validateColor {
  227. color: red;
  228. font-size: 18px;
  229. margin: 5px 0;
  230. display: block;
  231. }
  232. .labelCus {
  233. font-size: 18px;
  234. margin: 15px 5px;
  235. }
  236. .forgetPass {
  237. display: block;
  238. float: right;
  239. margin: 10px 0;
  240. font-size: 16px;
  241. }
  242. .menu-icon {
  243. font-size: 1.5rem !important;
  244. }
  245. .btn-add-delete{
  246. display: flex;
  247. }
  248. .select-filter{
  249. width: 15%;
  250. display: -webkit-inline-box;
  251. margin-left: 10px;
  252. }
  253. .navigation .link {
  254. display: none;
  255. }
  256. .table-style{
  257. text-align: center;
  258. }
  259. .pagination-control{
  260. display: flex;
  261. justify-content: center;
  262. }
  263. .customInputPadding {
  264. padding: 10px !important;
  265. }
  266. .menu-item {
  267. margin: 10px 0;
  268. }
  269. .textAlignRight {
  270. text-align: right;
  271. }
  272. .table th, .table td {
  273. border-top: 0;
  274. border-bottom: 0;
  275. }
  276. .table thead th {
  277. border-top: 0;
  278. border-bottom: 0;
  279. }
  280. .defaultStyle {
  281. border: 0 !important;
  282. }
  283. .defaultStyle:hover {
  284. background-color: transparent !important;
  285. }
  286. .titilList {
  287. width: 100%;
  288. border-bottom: 1px solid #221d4e;
  289. margin: 10px 0;
  290. padding: 10px 0 !important;
  291. float: left;
  292. }
  293. .titilList li {
  294. display: inline-block;
  295. margin: 0 5px;
  296. float: left;
  297. }
  298. .containerContent-w {
  299. margin: 20px 0;
  300. }
  301. .select-filter {
  302. height: 40px !important;
  303. border: 1px solid #a1a1e5;
  304. }
  305. .table thead th {
  306. vertical-align: initial;
  307. }
  308. .table {
  309. margin: 20px 0;
  310. }
  311. .table thead {
  312. background-color: #4e41a5;
  313. }
  314. .table th {
  315. padding: 0;
  316. text-align: center;
  317. }
  318. .table td {
  319. vertical-align: initial;
  320. padding: 0 !important;
  321. }
  322. .table tbody tr {
  323. text-align: center;
  324. }
  325. .table tbody tr:nth-child(odd) {
  326. background-color: #403b77;
  327. }
  328. .table tbody tr:hover{
  329. background-color: #4e41a5 ;
  330. }
  331. .table-bordered {
  332. border: 1px solid #2d2864
  333. }
  334. .table-bordered th, .table-bordered td {
  335. border: 1px solid #2d2864;
  336. }
  337. .pagination-control {
  338. position: absolute;
  339. right: 47%;
  340. bottom: 10px;
  341. }
  342. .cardBody {
  343. width: 100%;
  344. padding: 20px 10px;
  345. background-color: #3d3780;
  346. border-radius: 10px;
  347. margin: 20px 0;
  348. }
  349. .formLoop {
  350. border: 1px solid #4e41a5;
  351. padding: 20px !important;
  352. border-radius: 10px !important;
  353. margin: 30px 0;
  354. }
  355. .miniformLoop {
  356. border: 1px solid #4e41a5;
  357. padding: 20px !important;
  358. border-radius: 10px !important;
  359. margin: 30px 20px;
  360. }
  361. .spanReqired-w {
  362. color: red;
  363. padding: 0 5px;
  364. }
  365. }
  366. };