Angular job portal app
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 

140 Zeilen
2.8 KiB

  1. @import "../../../theme";
  2. header {
  3. background-color: $background-color;
  4. display: flex;
  5. align-items: center;
  6. justify-content: space-between;
  7. height: 70px;
  8. top: 0;
  9. left: 0;
  10. padding: 0 10px;
  11. .logo {
  12. display: flex;
  13. padding: 6px;
  14. align-items: center;
  15. }
  16. .logo-holder {
  17. display: flex;
  18. align-items: center;
  19. transition: width 0.3s;
  20. overflow: hidden;
  21. text-decoration: none;
  22. h5 {
  23. font-family: "Oswald", sans-serif;
  24. color: $text-color;
  25. font-weight: 100;
  26. left: 0;
  27. letter-spacing: 1.5px;
  28. font-size: 21px;
  29. }
  30. img {
  31. width: 40px;
  32. }
  33. }
  34. .hamburger {
  35. p {
  36. color: $white;
  37. }
  38. }
  39. }
  40. li {
  41. display: flex;
  42. flex-direction: column;
  43. .upfold {
  44. display: flex;
  45. flex-direction: column;
  46. justify-content: center;
  47. background-color: $segment-section;
  48. padding: 15px;
  49. border-style: solid;
  50. border: 2px solid $white;
  51. background-image: url("../../../assets/lock-closed.svg");
  52. background-repeat: no-repeat;
  53. background-size: 10px;
  54. background-position: 25px;
  55. span {
  56. text-align: center;
  57. color: $step-color;
  58. font-size: 11px;
  59. font-family: "Poppins", sans-serif;
  60. font-weight: 500;
  61. }
  62. h3 {
  63. text-align: center;
  64. color: lighten($color: $heading-color, $amount: 20%);
  65. font-size: 21.5px;
  66. font-family: "Oswald", sans-serif;
  67. font-weight: 300;
  68. }
  69. }
  70. img {
  71. padding: 22px 107px;
  72. display: none;
  73. }
  74. p {
  75. color: $content-color;
  76. text-align: center;
  77. font-family: "Poppins", sans-serif;
  78. font-size: 12px;
  79. line-height: 25px;
  80. display: none;
  81. padding: 5px 30px;
  82. }
  83. button {
  84. border-radius: 25px;
  85. height: 45px;
  86. font-size: 14px;
  87. font-family: "Poppins", sans-serif;
  88. border: none;
  89. margin: 25px 20px;
  90. font-weight: 600;
  91. background-color: $green;
  92. display: none;
  93. color: $white;
  94. }
  95. }
  96. .active {
  97. .upfold {
  98. background-image: url("../../../assets/lock-open.svg");
  99. }
  100. img,
  101. p,
  102. button {
  103. display: block;
  104. animation: fadein 0.8s;
  105. }
  106. @keyframes fadein {
  107. from {
  108. opacity: 0;
  109. }
  110. to {
  111. opacity: 1;
  112. }
  113. }
  114. div {
  115. padding-top: 32px;
  116. background-color: $white;
  117. animation: slideup 0.3s;
  118. }
  119. @keyframes slideup {
  120. from {
  121. transform: translateY(300px);
  122. }
  123. to {
  124. transform: translateY(0px);
  125. }
  126. }
  127. }