App.scss 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  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. }
  54. .pwd-container {
  55. display: flex;
  56. flex-direction: column;
  57. position: relative;
  58. img {
  59. position: absolute;
  60. cursor: pointer;
  61. width: 12%;
  62. top: 50%;
  63. left: 85%;
  64. }
  65. }
  66. }
  67. .divSign {
  68. display: flex;
  69. flex-direction: column;
  70. justify-content: center;
  71. align-items: center;
  72. .login-container {
  73. display: flex;
  74. flex-direction: column;
  75. }
  76. .pwd-container1 {
  77. display: flex;
  78. flex-direction: column;
  79. position: relative;
  80. }
  81. .pwd-container2 {
  82. display: flex;
  83. flex-direction: column;
  84. position: relative;
  85. }
  86. img {
  87. position: absolute;
  88. cursor: pointer;
  89. width: 12%;
  90. top: 50%;
  91. left: 85%;
  92. }
  93. }
  94. .ad {
  95. display: flex;
  96. flex-direction: row;
  97. align-items: center;
  98. margin: 10px auto;
  99. border : 1px solid white;
  100. border-radius: 15px;
  101. background-color: whitesmoke;
  102. padding: 10px;
  103. overflow-x: hidden;
  104. img {
  105. max-width: 200px;
  106. min-width: 200px;
  107. max-height: 300px;
  108. min-height: 150px;
  109. padding-left: 0px;
  110. border: 0;
  111. }
  112. a {
  113. text-decoration: none;
  114. color:black;
  115. font-size: 25px;
  116. }
  117. a:hover {
  118. background-color: #002f34;
  119. color: white;
  120. }
  121. }
  122. .adone {
  123. display: flex;
  124. flex-direction: column;
  125. justify-content: center;
  126. align-items: center;
  127. }
  128. .post {
  129. margin-top: 25px;
  130. padding: 25px 15px;
  131. background-color: whitesmoke;
  132. border-radius: 15px;
  133. }
  134. .profile {
  135. img {
  136. width: 10%;
  137. height: 20vh;
  138. border-radius: 100%;
  139. }
  140. }
  141. .loader {
  142. position: absolute;
  143. top: 40%;
  144. left: 50%;
  145. display: flex;
  146. justify-content: center;
  147. align-items: center;
  148. .lds-ring {
  149. position: relative;
  150. width: 80px;
  151. height: 80px;
  152. }
  153. .lds-ring div {
  154. box-sizing: border-box;
  155. display: block;
  156. position: absolute;
  157. width: 64px;
  158. height: 64px;
  159. margin: 8px;
  160. border: 8px solid #cef;
  161. border-radius: 50%;
  162. animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  163. border-color: #002f34 transparent transparent transparent;
  164. }
  165. .lds-ring div:nth-child(1) {
  166. animation-delay: -0.45s;
  167. }
  168. .lds-ring div:nth-child(2) {
  169. animation-delay: -0.3s;
  170. }
  171. .lds-ring div:nth-child(3) {
  172. animation-delay: -0.15s;
  173. }
  174. @keyframes lds-ring {
  175. 0% {
  176. transform: rotate(0deg);
  177. }
  178. 100% {
  179. transform: rotate(360deg);
  180. }
  181. }
  182. }
  183. .foter__indent {
  184. min-height: 150px;
  185. }
  186. footer {
  187. background: #002f34;
  188. color: white;
  189. padding-top: 25px;
  190. a {
  191. color: white;
  192. text-decoration: none;
  193. }
  194. }