App.scss 19 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076
  1. @keyframes zoom {
  2. from {
  3. transform: scale(0.5);
  4. }
  5. to {
  6. transform: scale(1);
  7. }
  8. }
  9. @-webkit-keyframes scroll {
  10. 0% {
  11. -webkit-transform: translate(0, 0);
  12. transform: translate(0, 0);
  13. }
  14. 100% {
  15. -webkit-transform: translate(-100%, 0);
  16. transform: translate(-100%, 0);
  17. }
  18. }
  19. @-moz-keyframes scroll {
  20. 0% {
  21. -moz-transform: translate(0, 0);
  22. transform: translate(0, 0);
  23. }
  24. 100% {
  25. -moz-transform: translate(-100%, 0);
  26. transform: translate(-100%, 0);
  27. }
  28. }
  29. @keyframes scroll {
  30. 0% {
  31. transform: translate(0, 0);
  32. }
  33. 100% {
  34. transform: translate(-100%, 0);
  35. }
  36. }
  37. .App {
  38. @font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
  39. 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
  40. 'Noto Color Emoji';
  41. background: var(--background-color);
  42. }
  43. .Body {
  44. // font-size: 20px;
  45. background: var(--background-color);
  46. }
  47. @import '~antd/dist/antd.css';
  48. body {
  49. font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  50. font-size: 20px;
  51. background: var(--background-color);
  52. }
  53. .Dropzone {
  54. display: flex;
  55. flex-direction: column;
  56. align-items: center;
  57. padding: 10px;
  58. border-width: 2px;
  59. border-radius: 2px;
  60. color: #1d5b78;
  61. transition: border 0.24s ease-in-out;
  62. font-size: medium;
  63. font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  64. transition: 0.3s;
  65. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  66. font-size: 20px;
  67. }
  68. .Link {
  69. color: white;
  70. margin-left: 5px;
  71. }
  72. .Link:hover {
  73. text-decoration: underline;
  74. color: rgb(241, 69, 155);
  75. }
  76. .Header {
  77. display: flex;
  78. position: fixed;
  79. padding: 10px;
  80. z-index: 4;
  81. width: 100%;
  82. opacity: 1;
  83. background-color: var(--background-color-header);
  84. // background-color: rgb(206, 227, 255);
  85. top: 0;
  86. transition: 0.3s;
  87. box-shadow: 0 5px 10px rgba(73, 80, 83, 0.25),
  88. 0 10px 5px rgba(191, 194, 196, 0.22);
  89. .Links {
  90. margin: 0 10px;
  91. font-size: xx-large;
  92. color: var(--font-color);
  93. transition: 0.3s;
  94. padding: 0 5px;
  95. &:hover {
  96. color: var(--font-color-hover);
  97. opacity: 0.9;
  98. }
  99. &:active {
  100. transform: scale(1.1);
  101. }
  102. .Avatar {
  103. // margin-left: 20px;
  104. width: 50px;
  105. border: 3px solid #fffff7;
  106. height: 50px;
  107. transition: 0.3s;
  108. }
  109. }
  110. }
  111. .Save {
  112. display: flex;
  113. margin-top: 30px;
  114. margin-bottom: 30px;
  115. align-items: center;
  116. align-content: center;
  117. justify-content: center;
  118. width: 200px;
  119. }
  120. .Recomendations {
  121. margin-left: 20px;
  122. }
  123. .Likes {
  124. margin-left: 20px;
  125. }
  126. .User {
  127. }
  128. .Feed {
  129. margin-right: 20px;
  130. padding: 10px;
  131. border-radius: 25px;
  132. display: 'flex';
  133. align-items: 'center';
  134. justify-content: 'center';
  135. }
  136. .EditSetting {
  137. display: 'flex';
  138. align-items: 'center';
  139. justify-content: 'center';
  140. margin: 0 auto;
  141. }
  142. .Post {
  143. max-width: 450px;
  144. margin: 0 auto;
  145. display: block;
  146. background-color: var(--background-color-new-post);
  147. border: 6px solid #dbebfa;
  148. padding: 30px;
  149. border-radius: 25px;
  150. // display: 'flex';
  151. align-items: 'center';
  152. justify-content: 'center';
  153. // margin-top: 100px;
  154. transition: 0.3s;
  155. // margin-bottom: 20px;
  156. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  157. box-shadow: inset 2px 2px 5px rgba(128, 125, 125, 0.9);
  158. position: absolute;
  159. top: 20%;
  160. left: 30%;
  161. // margin-right: -50%;
  162. // transform: translate(-10%, -50%)
  163. }
  164. ul {
  165. margin: 0;
  166. padding: 4px;
  167. }
  168. li {
  169. display: inline;
  170. margin-right: 5px;
  171. padding: 3px;
  172. list-style-type: none;
  173. }
  174. main {
  175. margin-top: 130px;
  176. }
  177. .Title {
  178. text-align: left;
  179. font-size: 18px;
  180. margin: 10px 0px;
  181. font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  182. }
  183. .Input {
  184. display: flex;
  185. // padding: 5px;
  186. margin: 10px;
  187. width: 80%;
  188. border-radius: 5px;
  189. font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  190. font-size: 20px;
  191. }
  192. .container {
  193. margin: 10px;
  194. background-color: rgb(84, 132, 222);
  195. margin-top: 20px;
  196. }
  197. .ButtonComment:hover {
  198. cursor: pointer;
  199. }
  200. .AboutMe {
  201. margin-top: 100px;
  202. display: flex;
  203. justify-content: center;
  204. .ProfileAvatar {
  205. margin-right: 20px;
  206. width: 150px;
  207. height: 150px;
  208. }
  209. .Info {
  210. .Login {
  211. font-weight: 600;
  212. font-size: 18px;
  213. color: var(--font-color);
  214. }
  215. font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  216. justify-content: center;
  217. display: flex;
  218. flex-direction: column;
  219. p {
  220. font-size: 16px;
  221. font-weight: 400;
  222. color: var(--font-color);
  223. padding: 0 auto;
  224. margin-bottom: 3px;
  225. }
  226. }
  227. }
  228. .Card {
  229. box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  230. width: 250px;
  231. height: 250px;
  232. object-fit: cover;
  233. position: relative;
  234. }
  235. .EditAvatar {
  236. display: flex;
  237. align-items: center;
  238. flex-direction: column;
  239. }
  240. .Preview {
  241. object-fit: cover;
  242. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  243. height: 100px;
  244. width: 100px;
  245. margin-bottom: 5px;
  246. }
  247. .Explore {
  248. display: flex;
  249. flex-wrap: wrap;
  250. padding: 20px;
  251. margin: 20px;
  252. margin-top: 50px;
  253. }
  254. .Preloader {
  255. display: block;
  256. margin: 0 auto;
  257. margin-bottom: 200px;
  258. padding: 10px;
  259. }
  260. .Gallery {
  261. position: absolute;
  262. z-index: 2;
  263. // right: 0;
  264. width: 50px;
  265. height: 50px;
  266. margin: 10px;
  267. padding: 5px;
  268. }
  269. .Wrapper {
  270. margin: 40px;
  271. transition: filter 0.5s;
  272. }
  273. .Wrapper:hover {
  274. -webkit-filter: brightness(40%);
  275. filter: brightness(50%);
  276. }
  277. // .Like {
  278. // cursor: pointer;
  279. // font-size: xx-large;
  280. // color: red;
  281. // }
  282. // .Like:active {
  283. // transform: scale(1.1);
  284. // }
  285. .OneLike {
  286. display: flex;
  287. .Like {
  288. cursor: pointer;
  289. font-size: xx-large;
  290. color: black;
  291. transition: filter 0.3s;
  292. &:active {
  293. transform: scale(1.1);
  294. }
  295. &:hover {
  296. opacity: 0.6;
  297. }
  298. }
  299. .LikeStyle {
  300. cursor: pointer;
  301. padding: 3px;
  302. }
  303. }
  304. // .UnLike:hover {
  305. // opacity: 0.6;
  306. // }
  307. // .MyCarousel {
  308. // display: block;
  309. // object-fit: cover;
  310. // background: #84898987;
  311. // box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  312. // box-shadow: inset 2px 2px 5px rgba(128, 125, 125, 0.9);
  313. // background-color: white;
  314. // border: 6px solid #dbebfa;
  315. // margin: 0 10%;
  316. // border-radius: 5px;
  317. // }
  318. .Modal {
  319. background-color: var(--modal-color);
  320. font-size: medium;
  321. display: flex;
  322. flex-direction: column;
  323. padding: 10px;
  324. // margin-bottom: 20px;
  325. }
  326. // .PostFeed {
  327. // border-width: 20;
  328. // border-color: #ffffff;
  329. // background: #edf8f89e;
  330. // border-radius: 5px;
  331. // border-style: solid;
  332. // margin-bottom: 40px;
  333. // transition: 0.3s;
  334. // box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  335. // }
  336. .NextArrow {
  337. font-size: 35px;
  338. color: var(--arrow-color);
  339. position: absolute;
  340. left: 100%;
  341. top: 50%;
  342. margin: auto;
  343. padding-left: 10px;
  344. text-shadow: black 1px 0 10px;
  345. transition: opacity 0.3s;
  346. }
  347. .NextArrow:hover {
  348. opacity: 0.6;
  349. }
  350. .NextArrow:active {
  351. transform: scale(1.1);
  352. }
  353. .PreviousArrow {
  354. color: var(--arrow-color);
  355. font-size: 35px;
  356. position: absolute;
  357. margin: auto;
  358. right: 100%;
  359. top: 50%;
  360. padding-right: 10px;
  361. }
  362. .PreviousArrow:hover {
  363. opacity: 0.6;
  364. }
  365. .PreviousArrow:active {
  366. transform: scale(1.1);
  367. }
  368. .LoginForm {
  369. margin: 120px;
  370. padding: 10px;
  371. background: rgba(58, 100, 180, 1);
  372. border-radius: 15px;
  373. text-align: center;
  374. align-items: center;
  375. justify-content: center;
  376. box-shadow: 0 10px 10px rgba(0, 0, 0, 0.22);
  377. p {
  378. font-size: x-large;
  379. font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS',
  380. sans-serif;
  381. text-align: center;
  382. margin: 0 auto;
  383. }
  384. .LoginForm-Form {
  385. box-shadow: 0 10px 10px rgba(0, 0, 0, 0.22);
  386. background: rgb(142, 199, 239);
  387. border-radius: 10px;
  388. margin: 21px;
  389. padding: 20px 50px;
  390. Button {
  391. margin: 10px 0px;
  392. padding: 0px 10px;
  393. text-align: center;
  394. align-items: center;
  395. justify-content: center;
  396. }
  397. p {
  398. color: #0c3d67;
  399. margin: 0;
  400. padding: 0;
  401. font-size: medium;
  402. }
  403. }
  404. }
  405. .InputForm {
  406. position: fixed;
  407. color: black;
  408. display: flex;
  409. flex-direction: column;
  410. width: 100%;
  411. height: 100%;
  412. text-align: center;
  413. float: right;
  414. // background: var(--background-color-start);
  415. background: var(--background-color-login);
  416. transition: 0.3s;
  417. // right: 0;
  418. text-align: center;
  419. align-items: center;
  420. justify-content: center;
  421. img {
  422. margin-top: 200px;
  423. }
  424. }
  425. // .LikeStyle {
  426. // cursor: pointer;
  427. // padding: 3px;
  428. // }
  429. .SmileBtn {
  430. font-size: xx-large;
  431. // margin-right: 15px;
  432. }
  433. .Send {
  434. font-size: xx-large;
  435. bottom: 5px;
  436. }
  437. .SmileBtnFilled {
  438. font-size: xx-large;
  439. // margin-right: 15px;
  440. color: #108ee9;
  441. }
  442. .FooterFeed {
  443. display: flex;
  444. margin: 15px 0px;
  445. }
  446. .Comments {
  447. position: fixed;
  448. margin: 20px;
  449. width: 30%;
  450. padding: 10px;
  451. }
  452. .WithOutScroll {
  453. display: block;
  454. flex-direction: column;
  455. // height: 200px;
  456. }
  457. .Scroll {
  458. display: block;
  459. flex-direction: column;
  460. height: 200px;
  461. overflow-y: scroll;
  462. }
  463. .ScrollForFeed {
  464. display: block;
  465. flex-direction: column;
  466. height: 200px;
  467. overflow-y: scroll;
  468. }
  469. .button {
  470. background-color: #dbebfa;
  471. color: rgb(0, 0, 0);
  472. -webkit-transition-duration: 0.4s;
  473. transition-duration: 0.4s;
  474. padding: 15px;
  475. font-size: 15px;
  476. border-radius: 5px;
  477. margin: 15px;
  478. font-weight: 600;
  479. font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  480. font-size: 15px;
  481. transition: 0.3s;
  482. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  483. }
  484. .button:hover {
  485. background-color: #fffff7;
  486. color: black;
  487. }
  488. .PostsFeed {
  489. margin: 20px;
  490. padding: 30px;
  491. margin-top: 50px;
  492. .PostsFeed-one {
  493. border-width: 20;
  494. border-color: #ffffff;
  495. background: #edf8f89e;
  496. border-radius: 5px;
  497. border-style: solid;
  498. margin-bottom: 40px;
  499. transition: 0.3s;
  500. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  501. .Owner {
  502. margin: 10px;
  503. }
  504. }
  505. }
  506. .MyCarousel {
  507. // display: block;
  508. object-fit: cover;
  509. background: #84898987;
  510. box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  511. box-shadow: inset 2px 2px 5px rgba(128, 125, 125, 0.9);
  512. background-color: white;
  513. border: 6px solid #dbebfa;
  514. margin: 0 7%;
  515. border-radius: 5px;
  516. .PostImage {
  517. display: flex;
  518. align-items: center;
  519. width: 600px;
  520. height: 400px;
  521. object-fit: cover;
  522. margin-left: auto;
  523. margin-right: auto;
  524. box-shadow: 0 10px 10px rgba(0, 0, 0, 0.22);
  525. }
  526. }
  527. .SpoilerButton {
  528. right: 30px;
  529. margin: 20px;
  530. }
  531. .ProfilePage {
  532. display: flex;
  533. flex-wrap: wrap;
  534. margin: 20px;
  535. }
  536. .NumberPosts {
  537. float: right;
  538. margin-bottom: 10px;
  539. }
  540. .Avatar {
  541. margin-left: 20px;
  542. width: 100px;
  543. border: 3px solid #fffff7;
  544. height: 55px;
  545. transition: 0.3s;
  546. }
  547. .Avatar:hover {
  548. box-shadow: 0 5px 10px rgba(21, 46, 57, 0.25),
  549. 0 10px 10px rgba(12, 43, 58, 0.22);
  550. }
  551. .OnePost {
  552. margin-top: 100px;
  553. }
  554. .ResultUserFind {
  555. max-width: 500px;
  556. min-width: 320px;
  557. max-height: 500px;
  558. padding: 15px 0;
  559. overflow-y: auto;
  560. color:black;
  561. }
  562. .Search {
  563. padding: 10px;
  564. display: flex;
  565. position: fixed;
  566. z-index: 4;
  567. width: 100%;
  568. // background-color: rgb(206, 227, 255);
  569. background-color: #ffffff;
  570. top: 0;
  571. transition: 0.3s;
  572. box-shadow: 0 5px 10px rgba(73, 80, 83, 0.25),
  573. 0 10px 5px rgba(191, 194, 196, 0.22);
  574. }
  575. .ResultUserFindMobile {
  576. display: flex;
  577. flex-direction: column;
  578. // align-items: center;
  579. // max-width: 500px;
  580. // min-width: 320px;
  581. // max-height: 500px;
  582. margin-top: 50px;
  583. padding: 15px 5px;
  584. overflow: auto;
  585. padding-bottom: 60px;
  586. }
  587. .InputOnePost {
  588. display: flex;
  589. width: 40%;
  590. margin-left: 10px;
  591. margin-right: 10px;
  592. }
  593. .ProfileAvatar {
  594. margin-right: 20px;
  595. width: 150px;
  596. height: 150px;
  597. }
  598. .FooterPost {
  599. .CommentsPost {
  600. height: 250px;
  601. }
  602. }
  603. .ModalLink {
  604. display: flex;
  605. padding: 5px;
  606. flex-direction: row;
  607. font-size: 16px;
  608. font-weight: bold;
  609. font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: var(--font-color);
  610. color: var(--font-color);
  611. .ModalAvatar {
  612. width: 50px;
  613. height: 50px;
  614. }
  615. }
  616. .ModalEdit {
  617. background-color: var(--modal-color);
  618. display: flex;
  619. padding: 10px 30px;
  620. flex-direction: column;
  621. font-size: 16px;
  622. font-weight: bold;
  623. font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: var(--font-color);
  624. color: var(--font-color);
  625. }
  626. @media screen and (max-width: 1450px) {
  627. .Explore {
  628. .Wrapper {
  629. margin: 20px;
  630. .Card {
  631. width: 220px;
  632. height: 220px;
  633. }
  634. }
  635. }
  636. }
  637. /* 992px - 1200px */
  638. @media screen and (max-width: 1200px) {
  639. .OneLike {
  640. .LikeStyle {
  641. width: 60px;
  642. }
  643. }
  644. .LoginForm {
  645. p {
  646. text-align: center;
  647. font-size: xx-large;
  648. }
  649. section {
  650. display: flex;
  651. // flex-direction: row;
  652. // width: 100%;
  653. align-items: center;
  654. text-align: center;
  655. margin: 0 auto;
  656. }
  657. }
  658. .InputForm {
  659. // width: 960px;
  660. img {
  661. width: 100%;
  662. // height: 50%;
  663. margin-bottom: 40%;
  664. margin-left: 20%;
  665. }
  666. Title {
  667. width: 100%;
  668. }
  669. }
  670. .OneLike {
  671. flex-direction: column;
  672. margin: 0px auto;
  673. .Like {
  674. .LikeStyle {
  675. padding: 5px;
  676. }
  677. }
  678. }
  679. .Explore {
  680. .Wrapper {
  681. margin: 20px;
  682. .Card {
  683. width: 220px;
  684. height: 220px;
  685. }
  686. }
  687. }
  688. .ProfilePage {
  689. .Wrapper {
  690. .Card {
  691. width: 150px;
  692. height: 150px;
  693. }
  694. }
  695. }
  696. }
  697. // /* 768px - 992px */
  698. @media screen and (max-width: 992px) {
  699. .OneLike {
  700. .LikeStyle {
  701. width: 60px;
  702. }
  703. }
  704. .FooterFeed {
  705. margin: 10px 0px;
  706. }
  707. .LoginForm {
  708. p {
  709. text-align: center;
  710. font-size: xx-large;
  711. }
  712. }
  713. .Header {
  714. bottom: 0;
  715. top: auto;
  716. }
  717. .AboutMe {
  718. margin-top: 20px;
  719. }
  720. .PostsFeed {
  721. margin: 10px;
  722. }
  723. .ProfilePage {
  724. .Wrapper {
  725. margin: 10px;
  726. .Card {
  727. width: 150px;
  728. height: 150px;
  729. }
  730. }
  731. }
  732. .Explore {
  733. .Wrapper {
  734. .Gallery {
  735. width: 15px;
  736. height: 15px;
  737. padding: 0px;
  738. }
  739. margin: 20px;
  740. .Card {
  741. width: 150px;
  742. height: 150px;
  743. }
  744. }
  745. }
  746. .Preloader {
  747. margin-bottom: 80px;
  748. }
  749. .AboutMe {
  750. .ProfileAvatar {
  751. height: 100px;
  752. width: 100px;
  753. }
  754. .Info {
  755. .Login {
  756. font-size: 16px;
  757. }
  758. p {
  759. font-size: 14px;
  760. }
  761. }
  762. }
  763. }
  764. /*576px-768px*/
  765. @media screen and (max-width: 768px) {
  766. .Header {
  767. .Links {
  768. // margin: 0 10px;
  769. // padding: 5px;
  770. font-size: x-large;
  771. .Avatar {
  772. width: 40px;
  773. border: 3px solid #fffff7;
  774. height: 40px;
  775. transition: 0.3s;
  776. }
  777. }
  778. }
  779. .FooterFeed {
  780. margin: 10px 0px;
  781. }
  782. .NextArrow {
  783. font-size: 30px;
  784. padding-left: 0px;
  785. margin-left: 10px;
  786. }
  787. .PreviousArrow {
  788. font-size: 30px;
  789. padding-right: 0px;
  790. margin-right: 10px;
  791. }
  792. .LoginForm {
  793. width: 70%;
  794. align-content: center;
  795. justify-content: center;
  796. margin: 0 auto;
  797. margin: 0 100px;
  798. padding: 0;
  799. // height: 90%;
  800. p {
  801. font-size: x-large;
  802. margin: 35px;
  803. }
  804. .LoginForm-Form {
  805. width: 90%;
  806. // padding: 10px;
  807. }
  808. }
  809. .Preloader {
  810. margin-bottom: 40px;
  811. }
  812. .Explore {
  813. margin-top: 0px;
  814. .Wrapper {
  815. margin: 10px;
  816. .Card {
  817. width: 120px;
  818. height: 120px;
  819. }
  820. }
  821. }
  822. .Post {
  823. display: block;
  824. // left: 0%;
  825. top: 20%;
  826. left: 20%;
  827. padding: 50px;
  828. margin-right: -50%;
  829. // right: 0%;
  830. }
  831. .MyCarousel {
  832. margin: 0 10%;
  833. border-radius: 5px;
  834. // .PostImage {
  835. // width: 300px;
  836. // height: 300px;
  837. // }
  838. }
  839. .OneLike {
  840. .LikeStyle {
  841. width: 60px;
  842. }
  843. }
  844. }
  845. /*320px-576px*/
  846. @media screen and (max-width: 576px) {
  847. .Modal {
  848. display: flex;
  849. flex-direction: column;
  850. // margin: 20px;
  851. // width: 300px;
  852. .ModalAvatar {
  853. width: 30px;
  854. height: 30px;
  855. }
  856. }
  857. .SmileBtn {
  858. font-size: x-large;
  859. // margin-right: 15px;
  860. }
  861. .Send {
  862. font-size: x-large;
  863. bottom: 5px;
  864. }
  865. .SmileBtnFilled {
  866. font-size: x-large;
  867. // margin-right: 15px;
  868. color: #108ee9;
  869. }
  870. .NextArrow {
  871. font-size: 25px;
  872. padding-left: 0px;
  873. margin-left: 10px;
  874. }
  875. .PreviousArrow {
  876. font-size: 25px;
  877. padding-right: 0px;
  878. margin-right: 10px;
  879. }
  880. .PostsFeed {
  881. margin: 20px;
  882. padding: 0px;
  883. margin-top: 20px;
  884. .PostsFeed-one {
  885. padding: 10px;
  886. }
  887. }
  888. .Preview {
  889. height: 80px;
  890. width: 80px;
  891. margin-bottom: 5px;
  892. }
  893. .Save {
  894. width: 150px;
  895. }
  896. .Title {
  897. font-size: 15px;
  898. }
  899. .Dropzone {
  900. padding: 10px;
  901. font-size: 10px;
  902. font-size: small;
  903. }
  904. .OnePost {
  905. margin-top: 40px;
  906. }
  907. .ScrollForFeed {
  908. height: 150px;
  909. }
  910. .FooterPost {
  911. margin-bottom: 100px;
  912. .CommentsPost {
  913. height: 180px;
  914. }
  915. }
  916. .OneLike {
  917. display: flex;
  918. font-size: 12px;
  919. .Like {
  920. font-size: x-large;
  921. color: black;
  922. }
  923. .LikeStyle {
  924. cursor: pointer;
  925. padding: 0px;
  926. width: 40px;
  927. }
  928. }
  929. .MyCarousel {
  930. // display: block;
  931. object-fit: cover;
  932. background: #84898987;
  933. box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  934. box-shadow: inset 2px 2px 5px rgba(128, 125, 125, 0.9);
  935. background-color: white;
  936. border: 6px solid #dbebfa;
  937. margin: 0 10%;
  938. border-radius: 5px;
  939. .PostImage {
  940. width: 200px;
  941. height: 200px;
  942. }
  943. }
  944. .LoginForm {
  945. width: 90%;
  946. align-content: center;
  947. justify-content: center;
  948. margin: 30px 20px;
  949. // padding: 20px;
  950. height: 90%;
  951. padding-right: 12px;
  952. p {
  953. font-size: x-large;
  954. margin: 5px;
  955. }
  956. .LoginForm-Form {
  957. padding: 10px 20px;
  958. // width: 80%;
  959. // padding: 20px;
  960. }
  961. }
  962. .AboutMe {
  963. .ProfileAvatar {
  964. height: 80px;
  965. width: 80px;
  966. }
  967. .Info {
  968. .Login {
  969. font-size: 14px;
  970. }
  971. p {
  972. font-size: 12px;
  973. }
  974. }
  975. }
  976. .ProfilePage {
  977. .Wrapper {
  978. .Gallery {
  979. width: 15px;
  980. height: 15px;
  981. padding: 0px;
  982. }
  983. margin: 10px;
  984. .Card {
  985. width: 90px;
  986. height: 90px;
  987. }
  988. }
  989. }
  990. .ModalLink {
  991. font-size: 13px;
  992. padding: 10px;
  993. margin: 10px;
  994. }
  995. .Post {
  996. display: flex;
  997. flex-direction: column;
  998. max-width: 380px;
  999. top: 0%;
  1000. left: 0%;
  1001. overflow: hidden;
  1002. background-color: var(background-color-new-post);
  1003. // margin-top: 50px;
  1004. margin: 10% 0;
  1005. // height: 500px;
  1006. // margin-top: 40px;
  1007. // margin-bottom: 40px;
  1008. }
  1009. .Explore {
  1010. margin-top: 0px;
  1011. margin: 5px;
  1012. .Wrapper {
  1013. .Gallery {
  1014. margin: 5px;
  1015. width: 20px;
  1016. height: 20px;
  1017. }
  1018. margin: 10px;
  1019. .Card {
  1020. width: 120px;
  1021. height: 120px;
  1022. }
  1023. }
  1024. }
  1025. }