App.scss 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  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. .d1 {
  41. background: #002f34;
  42. form {
  43. position: relative;
  44. width: 300px;
  45. input {
  46. width: 100%;
  47. height: 35px;
  48. padding-left: 10px;
  49. border: 2px solid #FFF;
  50. border-radius: 5px;
  51. outline: none;
  52. background: #FFF;
  53. color: #000;
  54. }
  55. .search {
  56. position: absolute;
  57. top: 0;
  58. right: 0;
  59. width: 35px;
  60. height: 35px;
  61. border: none;
  62. border-radius: 5px;
  63. background: #fff;
  64. cursor: pointer;
  65. img{
  66. margin-top: 5px;
  67. margin-left: 8px;
  68. width: 25px;
  69. }
  70. }
  71. }
  72. }
  73. .divLogin {
  74. display: flex;
  75. flex-direction: column;
  76. justify-content: center;
  77. align-items: center;
  78. margin-top: 20px;
  79. input {
  80. width: 200px;
  81. }
  82. .login-container {
  83. display: flex;
  84. flex-direction: column;
  85. position: relative;
  86. a {
  87. text-decoration: none;
  88. color:black;
  89. font-size: 18px;
  90. }
  91. a:hover {
  92. background-color: #002f34;
  93. color: white;
  94. }
  95. }
  96. .pwd-container {
  97. display: flex;
  98. flex-direction: column;
  99. position: relative;
  100. img {
  101. position: absolute;
  102. cursor: pointer;
  103. width: 12%;
  104. top: 50%;
  105. left: 85%;
  106. }
  107. }
  108. }
  109. .divSign {
  110. display: flex;
  111. flex-direction: column;
  112. justify-content: center;
  113. align-items: center;
  114. .login-container {
  115. display: flex;
  116. flex-direction: column;
  117. }
  118. .pwd-container1 {
  119. display: flex;
  120. flex-direction: column;
  121. position: relative;
  122. }
  123. .pwd-container2 {
  124. display: flex;
  125. flex-direction: column;
  126. position: relative;
  127. }
  128. img {
  129. position: absolute;
  130. cursor: pointer;
  131. width: 12%;
  132. top: 50%;
  133. left: 85%;
  134. }
  135. }
  136. .ad {
  137. display: flex;
  138. flex-direction: row;
  139. align-items: center;
  140. margin: 10px auto;
  141. border : 1px solid white;
  142. border-radius: 15px;
  143. background-color: whitesmoke;
  144. padding: 10px;
  145. overflow-x: hidden;
  146. img {
  147. max-width: 200px;
  148. min-width: 200px;
  149. max-height: 300px;
  150. min-height: 150px;
  151. padding-left: 0px;
  152. border: 0;
  153. }
  154. a {
  155. text-decoration: none;
  156. color:black;
  157. font-size: 25px;
  158. }
  159. a:hover {
  160. background-color: #002f34;
  161. color: white;
  162. }
  163. .href {
  164. margin-top:15px;
  165. font-size: 20px;
  166. }
  167. }
  168. .AdPage {
  169. display: flex;
  170. justify-content: center;
  171. align-items: center;
  172. flex-direction: column;
  173. margin: 25px 0;
  174. .carousel {
  175. width: 50%;
  176. margin-bottom: 20px;
  177. img {
  178. height: 45vh
  179. }
  180. }
  181. .mainInfo {
  182. margin-bottom: 20px;
  183. padding: 10px;
  184. width: 50%;
  185. background-color: whitesmoke;
  186. display: flex;
  187. flex-direction: column;
  188. justify-content: flex-start;
  189. border-radius: 15px;
  190. }
  191. }
  192. .post {
  193. margin-top: 25px;
  194. padding: 25px 15px;
  195. background-color: whitesmoke;
  196. border-radius: 15px;
  197. }
  198. .profile {
  199. img {
  200. width: 20vh;
  201. height: 20vh;
  202. border-radius: 50%;
  203. }
  204. }
  205. .loader {
  206. position: absolute;
  207. top: calc(50% - 80px);
  208. left: calc(50% - 80px);
  209. display: flex;
  210. justify-content: center;
  211. align-items: center;
  212. .lds-ring {
  213. position: relative;
  214. width: 80px;
  215. height: 80px;
  216. }
  217. .lds-ring div {
  218. box-sizing: border-box;
  219. display: block;
  220. position: absolute;
  221. width: 64px;
  222. height: 64px;
  223. margin: 8px;
  224. border: 8px solid #cef;
  225. border-radius: 50%;
  226. animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  227. border-color: #002f34 transparent transparent transparent;
  228. }
  229. .lds-ring div:nth-child(1) {
  230. animation-delay: -0.45s;
  231. }
  232. .lds-ring div:nth-child(2) {
  233. animation-delay: -0.3s;
  234. }
  235. .lds-ring div:nth-child(3) {
  236. animation-delay: -0.15s;
  237. }
  238. @keyframes lds-ring {
  239. 0% {
  240. transform: rotate(0deg);
  241. }
  242. 100% {
  243. transform: rotate(360deg);
  244. }
  245. }
  246. }
  247. .foter__indent {
  248. min-height: 150px;
  249. }
  250. footer {
  251. background: #002f34;
  252. color: white;
  253. padding-top: 25px;
  254. a {
  255. color: white;
  256. text-decoration: none;
  257. }
  258. }