Angular job portal app
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

TechnicalInterview.module.scss 3.4 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. .techinicalInterviewContent {
  2. display: fixed;
  3. height: 100vh;
  4. width: 100vw;
  5. .description {
  6. ion-icon {
  7. width: 15rem;
  8. height: 10rem;
  9. width: 95%;
  10. margin: 0 auto;
  11. margin-top: 4rem;
  12. }
  13. .meet {
  14. h4 {
  15. color: #363636;
  16. text-align: center;
  17. font-size: 2.4rem;
  18. font-weight: 300;
  19. letter-spacing: 0.024rem;
  20. margin-top: 3rem;
  21. }
  22. p {
  23. color: #868686;
  24. font-size: 1.4rem;
  25. text-align: center;
  26. width: 90%;
  27. margin: 0 auto;
  28. margin-top: 2rem;
  29. line-height: 1.8;
  30. }
  31. }
  32. .countdown {
  33. display: flex;
  34. flex-direction: column;
  35. align-items: center;
  36. height: 45vh;
  37. justify-content: space-around;
  38. h4 {
  39. color: #363636;
  40. text-align: center;
  41. font-size: 2.4rem;
  42. font-weight: 300;
  43. letter-spacing: 0.024rem;
  44. }
  45. .timeLeft {
  46. .time {
  47. font-size: 3.6rem;
  48. font-weight: 600;
  49. color: #363636;
  50. letter-spacing: 0.036rem;
  51. }
  52. .days {
  53. font-size: 1.3rem;
  54. color: #9F9F9F;
  55. display: flex;
  56. justify-content: space-between;
  57. align-items: center;
  58. width: 95%;
  59. margin: 0 auto;
  60. text-align: center;
  61. }
  62. }
  63. .icon {
  64. width: 6rem;
  65. height: 6rem;
  66. background-color: #33CE93;
  67. border-radius: 50%;
  68. display: flex;
  69. align-items: center;
  70. justify-content: center;
  71. ion-icon {
  72. width: 2rem;
  73. height: 2rem;
  74. margin: 0;
  75. }
  76. }
  77. }
  78. }
  79. .techinicalInterviewBtn {
  80. text-decoration: none;
  81. ion-button {
  82. width: 95%;
  83. margin: 0 auto;
  84. margin-top: 38vh;
  85. margin-bottom: 0;
  86. --background: var(--primary-button-color);
  87. }
  88. }
  89. .buttonHolder {
  90. display: flex;
  91. justify-content: space-around;
  92. align-items: center;
  93. width: 95%;
  94. margin: 0 auto;
  95. margin-top: 7rem;
  96. a {
  97. text-decoration: none;
  98. }
  99. .dashboardButton {
  100. width: 18rem;
  101. ion-button {
  102. margin: 0;
  103. --border-style: solid;
  104. --border-width: 0.1rem;
  105. --border-color: var(--primary-button-color);
  106. --background: transparent;
  107. --color: var(--primary-button-color);
  108. font-size: 1.6rem;
  109. font-weight: 600;
  110. }
  111. }
  112. .nextStepButton {
  113. width: 18rem;
  114. margin-left: 1rem;
  115. ion-button {
  116. font-size: 1.6rem;
  117. font-weight: 600;
  118. --background: var(--primary-button-color);
  119. }
  120. }
  121. }
  122. }