Angular job portal app
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_commonheader.scss 1.6 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. @import "../../../theme";
  2. header {
  3. background-color: $background-color;
  4. display: flex;
  5. align-items: center;
  6. justify-content: space-between;
  7. height: 90px;
  8. top: 0;
  9. left: 0;
  10. padding-left:25px;
  11. .logo {
  12. display: flex;
  13. flex-direction: column;
  14. padding: 6px 14px;
  15. h5 {
  16. color: $text-color;
  17. font-weight: 300;
  18. left: 0;
  19. font-size: 24px;
  20. letter-spacing: 0.3px;
  21. }
  22. span {
  23. color: $white;
  24. letter-spacing: 0.3px;
  25. font-size: 13px;
  26. font-weight: 500;
  27. }
  28. }
  29. .cross-icon {
  30. padding-right: 10px;
  31. button {
  32. border: none;
  33. background-color: transparent;
  34. width: 30px;
  35. height: 30px;
  36. margin: 14px;
  37. cursor: pointer;
  38. }
  39. img {
  40. width: 30px;
  41. }
  42. }
  43. }
  44. .footer-btn {
  45. border-radius: 25px;
  46. height: 45px;
  47. font-size: 14px;
  48. border: none;
  49. margin: 5px 0;
  50. font-weight: 600;
  51. width: 100%;
  52. background-color: $green;
  53. color: $white;
  54. }
  55. .upfold {
  56. padding: 30px 25px 0px;
  57. h3 {
  58. font-size: 24px;
  59. color: lighten($color: $heading-color, $amount: 20%);
  60. text-align: center;
  61. font-weight: 300;
  62. padding-top: 13px;
  63. }
  64. p {
  65. color: $content-color;
  66. text-align: center;
  67. font-size: 14px;
  68. line-height: 28px;
  69. padding: 15px 0;
  70. font-weight: 400;
  71. }
  72. }
  73. button {
  74. border-radius: 30px;
  75. height: 50px;
  76. font-size: 16px;
  77. border: none;
  78. margin: 5px;
  79. font-weight: 600;
  80. }