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.
 
 
 
 

74 lines
1.5 KiB

  1. .closingDocs {
  2. display: flex;
  3. flex-direction: column;
  4. justify-content: space-around;
  5. align-items: center;
  6. height: 88vh;
  7. .closingDocsImg {
  8. width: 12rem;
  9. height: 12rem;
  10. }
  11. .docsHeader {
  12. color: #363636;
  13. font-size: 2.4rem;
  14. font-weight: 300;
  15. text-align: center;
  16. }
  17. .docsSubHeader {
  18. color: #868686;
  19. font-size: 1.6rem;
  20. font-weight: 600;
  21. }
  22. .uploadDocsHolder {
  23. display: flex;
  24. flex-direction: column;
  25. align-items: center;
  26. justify-content: space-around;
  27. height: 30vh;
  28. width: 95%;
  29. .docs {
  30. display: flex;
  31. justify-content: space-between;
  32. align-items: center;
  33. width: 95%;
  34. margin: 0 auto;
  35. .docsName {
  36. font-size: 1.2rem;
  37. }
  38. .iconBorder {
  39. border: 0.1rem solid var(--primary-button-color);
  40. border-radius: 50%;
  41. width: 3rem;
  42. height: 3rem;
  43. display: flex;
  44. align-items: center;
  45. justify-content: center;
  46. }
  47. }
  48. }
  49. .closingDocsButton {
  50. width: 95%;
  51. margin: 0 auto;
  52. text-decoration: none;
  53. ion-button {
  54. width: 100%;
  55. --background: #DDDDDD;
  56. }
  57. }
  58. .active {
  59. ion-button {
  60. --background: var(--primary-button-color);
  61. }
  62. }
  63. }