App.scss 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. @import "~bootstrap/scss/bootstrap";
  2. html,body {
  3. width: 100%;
  4. max-width: 100%;
  5. overflow-x: hidden;
  6. height: 100%;
  7. button {
  8. background: #002f34;
  9. color: white;
  10. font-weight: 500;
  11. border: 2px solid #002f34;
  12. border-radius: 5px;
  13. padding: 10px 30px;
  14. }
  15. button:hover {
  16. color: #002f34;
  17. background: white;
  18. }
  19. }
  20. .Navbar {
  21. background: #002f34;
  22. display: flex;
  23. .header {
  24. img {
  25. width: 20%;
  26. }
  27. #basic-navbar-nav {
  28. display: flex;
  29. justify-content: end;
  30. a {
  31. color: white;
  32. text-decoration: none;
  33. }
  34. a:hover {
  35. margin-top: 1px ;
  36. }
  37. }
  38. }
  39. }
  40. .divLogin {
  41. display: flex;
  42. flex-direction: column;
  43. justify-content: center;
  44. align-items: center;
  45. margin-top: 20px;
  46. input {
  47. width: 200px;
  48. }
  49. .login-container {
  50. display: flex;
  51. flex-direction: column;
  52. position: relative;
  53. a {
  54. text-decoration: none;
  55. color:black;
  56. font-size: 18px;
  57. }
  58. a:hover {
  59. background-color: #002f34;
  60. color: white;
  61. }
  62. }
  63. .pwd-container {
  64. display: flex;
  65. flex-direction: column;
  66. position: relative;
  67. img {
  68. position: absolute;
  69. cursor: pointer;
  70. width: 12%;
  71. top: 50%;
  72. left: 85%;
  73. }
  74. }
  75. }
  76. .divSign {
  77. display: flex;
  78. flex-direction: column;
  79. justify-content: center;
  80. align-items: center;
  81. .login-container {
  82. display: flex;
  83. flex-direction: column;
  84. }
  85. .pwd-container1 {
  86. display: flex;
  87. flex-direction: column;
  88. position: relative;
  89. }
  90. .pwd-container2 {
  91. display: flex;
  92. flex-direction: column;
  93. position: relative;
  94. }
  95. img {
  96. position: absolute;
  97. cursor: pointer;
  98. width: 12%;
  99. top: 50%;
  100. left: 85%;
  101. }
  102. }
  103. .ad {
  104. display: flex;
  105. flex-direction: row;
  106. align-items: center;
  107. margin: 10px auto;
  108. border : 1px solid white;
  109. border-radius: 15px;
  110. background-color: whitesmoke;
  111. padding: 10px;
  112. overflow-x: hidden;
  113. img {
  114. max-width: 200px;
  115. min-width: 200px;
  116. max-height: 300px;
  117. min-height: 150px;
  118. padding-left: 0px;
  119. border: 0;
  120. }
  121. a {
  122. text-decoration: none;
  123. color:black;
  124. font-size: 25px;
  125. }
  126. a:hover {
  127. background-color: #002f34;
  128. color: white;
  129. }
  130. }
  131. .adone {
  132. display: flex;
  133. flex-direction: column;
  134. justify-content: center;
  135. align-items: center;
  136. }
  137. .post {
  138. margin-top: 25px;
  139. padding: 25px 15px;
  140. background-color: whitesmoke;
  141. border-radius: 15px;
  142. }
  143. .profile {
  144. img {
  145. width: 20vh;
  146. height: 20vh;
  147. border-radius: 50%;
  148. }
  149. }
  150. .loader {
  151. position: absolute;
  152. top: 40%;
  153. left: calc(50% - 80px);
  154. display: flex;
  155. justify-content: center;
  156. align-items: center;
  157. .lds-ring {
  158. position: relative;
  159. width: 80px;
  160. height: 80px;
  161. }
  162. .lds-ring div {
  163. box-sizing: border-box;
  164. display: block;
  165. position: absolute;
  166. width: 64px;
  167. height: 64px;
  168. margin: 8px;
  169. border: 8px solid #cef;
  170. border-radius: 50%;
  171. animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  172. border-color: #002f34 transparent transparent transparent;
  173. }
  174. .lds-ring div:nth-child(1) {
  175. animation-delay: -0.45s;
  176. }
  177. .lds-ring div:nth-child(2) {
  178. animation-delay: -0.3s;
  179. }
  180. .lds-ring div:nth-child(3) {
  181. animation-delay: -0.15s;
  182. }
  183. @keyframes lds-ring {
  184. 0% {
  185. transform: rotate(0deg);
  186. }
  187. 100% {
  188. transform: rotate(360deg);
  189. }
  190. }
  191. }
  192. .foter__indent {
  193. min-height: 150px;
  194. }
  195. footer {
  196. background: #002f34;
  197. color: white;
  198. padding-top: 25px;
  199. a {
  200. color: white;
  201. text-decoration: none;
  202. }
  203. }