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.

FinalInterviewResult.module.scss 1.7 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. .finalInterviewResults {
  2. .description {
  3. .icon {
  4. margin-top: 4rem;
  5. display: flex;
  6. justify-content: center;
  7. ion-icon {
  8. width: 10rem;
  9. height: 10rem;
  10. }
  11. }
  12. .stepDescription {
  13. h4 {
  14. color: #363636;
  15. text-align: center;
  16. font-size: 2.4rem;
  17. font-weight: 300;
  18. letter-spacing: 0.024rem;
  19. margin-top: 3rem;
  20. }
  21. p {
  22. color: #868686;
  23. font-size: 1.4rem;
  24. text-align: center;
  25. width: 90%;
  26. margin: 0 auto;
  27. margin-top: 2rem;
  28. line-height: 1.8;
  29. }
  30. }
  31. }
  32. .buttonHolder {
  33. display: flex;
  34. justify-content: space-around;
  35. align-items: center;
  36. width: 95%;
  37. margin: 0 auto;
  38. margin-top: 22rem;
  39. a {
  40. text-decoration: none;
  41. }
  42. .dashboardButton {
  43. width: 18rem;
  44. ion-button {
  45. margin: 0;
  46. --border-style: solid;
  47. --border-width: 0.1rem;
  48. --border-color: var(--primary-button-color);
  49. --background: transparent;
  50. --color: var(--primary-button-color);
  51. font-size: 1.6rem;
  52. font-weight: 600;
  53. }
  54. }
  55. .nextStepButton {
  56. width: 18rem;
  57. margin-left: 1rem;
  58. ion-button {
  59. font-size: 1.6rem;
  60. font-weight: 600;
  61. --background: var(--primary-button-color);
  62. }
  63. }
  64. }
  65. }