App.scss 17 KB

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