App.scss 15 KB

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