App.scss 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705
  1. // RESET STYLE
  2. html {
  3. box-sizing: border-box;
  4. }
  5. *,
  6. *::after,
  7. *::before {
  8. box-sizing: inherit;
  9. }
  10. ul[class],
  11. ol[class] {
  12. padding: 0;
  13. }
  14. body,
  15. h1,
  16. h2,
  17. h3,
  18. h4,
  19. h5,
  20. h6,
  21. p,
  22. ul[class],
  23. ol[class],
  24. li,
  25. figure,
  26. figcaption,
  27. blockquote,
  28. dl,
  29. dd {
  30. margin: 0;
  31. }
  32. ul[class] {
  33. list-style: none;
  34. }
  35. img {
  36. max-width: 100%;
  37. display: block;
  38. }
  39. input,
  40. button,
  41. textarea,
  42. select {
  43. font: inherit;
  44. }
  45. $defaultColorW: #fff;
  46. $defaultColorB: #000;
  47. body {
  48. background-color: #f9f9f9;
  49. color: $defaultColorB;
  50. }
  51. video {
  52. width: 100%;
  53. margin: 0 auto;
  54. max-height: 500px;
  55. }
  56. .Header {
  57. display: flex;
  58. background-color: #ececec;
  59. justify-content: space-between;
  60. align-items: center;
  61. .Logo {
  62. display: block;
  63. }
  64. &__inner {
  65. max-width: 1250px;
  66. margin: 0 auto;
  67. }
  68. &__search {
  69. display: block;
  70. padding: 0 10px;
  71. }
  72. &__search-link {
  73. display: flex;
  74. align-items: center;
  75. padding: 5px 20px;
  76. transition: all 0.3s;
  77. strong {
  78. padding-left: 15px;
  79. color: $defaultColorB;
  80. }
  81. &:hover {
  82. background-color: #0057ff1f;
  83. }
  84. }
  85. &__search-drop {
  86. max-width: 500px;
  87. min-width: 320px;
  88. max-height: 500px;
  89. padding: 16px 0;
  90. overflow: auto;
  91. }
  92. &__userNav {
  93. div {
  94. padding-left: 20px;
  95. }
  96. a {
  97. display: flex;
  98. align-items: center;
  99. justify-content: center;
  100. &.active {
  101. svg {
  102. fill: $defaultColorB;
  103. }
  104. }
  105. }
  106. svg {
  107. width: 24px;
  108. height: 24px;
  109. }
  110. }
  111. }
  112. .PreloaderImg {
  113. position: fixed;
  114. top: 0;
  115. bottom: 0;
  116. left: 0;
  117. right: 0;
  118. z-index: 2;
  119. background-color: rgba(#fff, 0.6);
  120. display: flex;
  121. align-items: center;
  122. justify-content: center;
  123. }
  124. .ant-popover {
  125. padding-top: 12px;
  126. &-arrow {
  127. width: 14px;
  128. height: 19px;
  129. &-content {
  130. width: 14px;
  131. height: 14px;
  132. }
  133. }
  134. &-inner-content {
  135. padding: 2px 0 0;
  136. }
  137. }
  138. .dropMenu {
  139. max-width: 200px;
  140. min-width: 150px;
  141. .anticon.anticon-user,
  142. li {
  143. transition: all 0.3s;
  144. &:hover {
  145. background-color: rgba($color: #0057ff, $alpha: 0.12);
  146. }
  147. }
  148. a {
  149. transition: all 0.3s;
  150. }
  151. &__icon {
  152. margin-right: 2px;
  153. svg {
  154. width: 15px;
  155. height: 15px;
  156. }
  157. }
  158. button {
  159. cursor: pointer;
  160. text-align-last: left;
  161. width: 100%;
  162. background-color: transparent;
  163. border: none;
  164. padding: 0;
  165. margin: 0;
  166. transition: all 0.3s;
  167. }
  168. }
  169. .Authorization {
  170. height: 100%;
  171. background-position: right top;
  172. background-repeat: no-repeat;
  173. background-size: cover;
  174. a {
  175. font-size: 1.2em;
  176. }
  177. .active {
  178. color: red;
  179. }
  180. .ant-form-item {
  181. margin-bottom: 10px;
  182. }
  183. &__form {
  184. height: 100vh;
  185. padding-right: calc(10vw + 25px);
  186. }
  187. .login-form {
  188. text-align: center;
  189. button {
  190. width: 75%;
  191. }
  192. }
  193. .ant-divider {
  194. margin-bottom: 0;
  195. }
  196. }
  197. .ant-layout-header {
  198. height: 58px;
  199. line-height: 58px;
  200. padding: 0 20px;
  201. background-color: $defaultColorW;
  202. box-shadow: 0 0 9px 5px rgba($color: #001529, $alpha: 0.4);
  203. }
  204. .Main {
  205. position: relative;
  206. padding-top: 58px;
  207. &__inner {
  208. padding-top: 22px;
  209. }
  210. }
  211. .owner .nick {
  212. padding-left: 15px;
  213. }
  214. .Post {
  215. padding: 10px 0;
  216. position: relative;
  217. img {
  218. width: 100%;
  219. margin: 0 auto;
  220. padding: 1px;
  221. max-height: 600px;
  222. object-fit: contain;
  223. }
  224. &__dots.slick-dots {
  225. bottom: -14px;
  226. li {
  227. border-radius: 50%;
  228. background-color: rgba($color: #1890ff, $alpha: 0.5);
  229. width: 10px;
  230. height: 10px;
  231. overflow: hidden;
  232. &.slick-active {
  233. border-radius: 5px;
  234. width: 20px;
  235. button {
  236. background-color: #1890ff;
  237. }
  238. }
  239. button {
  240. height: 10px;
  241. }
  242. }
  243. }
  244. .ant-empty-image {
  245. height: 300px;
  246. img {
  247. margin: 0 auto;
  248. width: auto;
  249. }
  250. }
  251. &__btn {
  252. border: none;
  253. position: absolute;
  254. padding: 0;
  255. background-color: rgba(0, 0, 0, 0.165);
  256. bottom: 1px;
  257. top: 1px;
  258. width: 50px;
  259. transition: 0.4s;
  260. z-index: 5;
  261. cursor: pointer;
  262. svg {
  263. fill: $defaultColorW;
  264. opacity: 0.5;
  265. width: 50px;
  266. height: 30px;
  267. transition: 0.4s;
  268. }
  269. }
  270. &__prev {
  271. left: 0px;
  272. opacity: 0;
  273. &.--active {
  274. opacity: 1;
  275. }
  276. }
  277. &__next {
  278. right: 0px;
  279. opacity: 0;
  280. &.--active {
  281. opacity: 1;
  282. }
  283. }
  284. &__heart,
  285. &__collection {
  286. button {
  287. display: inline-block;
  288. min-width: auto;
  289. width: 30px;
  290. height: 30px;
  291. border: none;
  292. padding: 0;
  293. box-shadow: none;
  294. }
  295. strong {
  296. display: inline-block;
  297. }
  298. }
  299. &__collection {
  300. button {
  301. margin-right: auto;
  302. }
  303. svg {
  304. stroke-width: 2px;
  305. width: 24px;
  306. height: 24px;
  307. }
  308. }
  309. &__comments {
  310. a {
  311. font-size: 1.1em;
  312. color: $defaultColorB;
  313. font-weight: 500;
  314. }
  315. }
  316. &__send-comment {
  317. button {
  318. border: none;
  319. box-shadow: none;
  320. }
  321. }
  322. &__panel-btn {
  323. button {
  324. cursor: pointer;
  325. border: none;
  326. padding: 0;
  327. margin: 0;
  328. background-color: inherit;
  329. transition: all 0.3s;
  330. &:hover {
  331. text-shadow: 1px 1px 3px $defaultColorB;
  332. }
  333. }
  334. }
  335. }
  336. .Modal {
  337. .ant-modal-body {
  338. padding-left: 0;
  339. padding-right: 0;
  340. }
  341. &__inner {
  342. overflow: auto;
  343. max-height: 400px;
  344. .ant-skeleton-header {
  345. padding-left: 20px;
  346. }
  347. }
  348. li {
  349. padding-left: 35px;
  350. padding-right: 35px;
  351. }
  352. }
  353. .Profile {
  354. width: 100%;
  355. padding: 10px;
  356. padding-bottom: 30px;
  357. h1 {
  358. line-height: 1;
  359. }
  360. a {
  361. display: inline-block;
  362. }
  363. &__data {
  364. padding-top: 10px;
  365. }
  366. &__name {
  367. padding-bottom: 10px;
  368. }
  369. &__login {
  370. color: #8d8d8d;
  371. }
  372. &__count {
  373. padding-top: 10px;
  374. strong {
  375. font-size: 1.2em;
  376. padding-right: 5px;
  377. }
  378. span {
  379. font-size: 1.2em;
  380. }
  381. button {
  382. padding: 0;
  383. border: none;
  384. }
  385. }
  386. button {
  387. color: $defaultColorB;
  388. }
  389. &__link-message {
  390. display: inline-block;
  391. background: #1890ff;
  392. line-height: 1.5715;
  393. box-shadow: 0 2px 0 rgb(0 0 0 / 2%);
  394. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  395. height: 32px;
  396. padding: 4px 15px;
  397. font-size: 14px;
  398. border-radius: 2px;
  399. color: rgba(0, 0, 0, 0.85);
  400. border: 1px solid #1890ff;
  401. &:hover {
  402. color: $defaultColorW;
  403. border-color: #40a9ff;
  404. background: #40a9ff;
  405. }
  406. }
  407. &__created {
  408. padding: 10px 0;
  409. }
  410. &__post {
  411. padding: 2px;
  412. div {
  413. padding: 0;
  414. }
  415. img,
  416. video {
  417. width: 100%;
  418. height: 100%;
  419. max-height: 175px;
  420. margin: 0 auto;
  421. object-fit: cover;
  422. }
  423. }
  424. &__box {
  425. position: relative;
  426. &-icon {
  427. position: absolute;
  428. top: 0;
  429. right: 0;
  430. }
  431. &-icon--video {
  432. position: absolute;
  433. top: 50%;
  434. left: 50%;
  435. transform: translate(-50%, -50%);
  436. font-size: 2.5em;
  437. svg {
  438. fill: $defaultColorW;
  439. stroke: $defaultColorB;
  440. }
  441. }
  442. }
  443. }
  444. .PostOne {
  445. max-width: 1250px;
  446. padding: 40px 15px 0;
  447. margin: 0 auto;
  448. &__inner {
  449. display: grid;
  450. grid-template-columns: repeat(2, 1fr);
  451. grid-template-rows: 0.1fr 1fr;
  452. grid-column-gap: 0px;
  453. grid-row-gap: 0px;
  454. align-items: center;
  455. box-shadow: 0 0 6px 2px rgba($color: $defaultColorB, $alpha: 0.5);
  456. border-radius: 5px;
  457. max-height: 650px;
  458. }
  459. &__title {
  460. grid-area: 1 / 2 / 2 / 3;
  461. padding: 10px 20px 5px;
  462. background-color: $defaultColorW;
  463. & .owner {
  464. font-size: 1.2em;
  465. font-weight: 500;
  466. }
  467. }
  468. &__image {
  469. grid-area: 1 / 1 / 3 / 2;
  470. width: 60vw;
  471. max-width: 700px;
  472. height: 100%;
  473. background-color: rgb(87, 87, 87);
  474. img {
  475. max-width: 100%;
  476. max-height: 550px;
  477. min-height: 450px;
  478. margin: 0 auto;
  479. object-fit: cover;
  480. }
  481. .Post__dots.slick-dots {
  482. bottom: 12px;
  483. }
  484. }
  485. &__description {
  486. grid-area: 2 / 2 / 3 / 3;
  487. background-color: $defaultColorW;
  488. padding: 5px 20px;
  489. height: 100%;
  490. .ant-typography {
  491. overflow-wrap: anywhere;
  492. margin-bottom: 5px;
  493. }
  494. .ant-divider {
  495. margin: 0 0 15px 0;
  496. }
  497. }
  498. &__description-inner {
  499. display: flex;
  500. flex-direction: column;
  501. justify-content: space-between;
  502. height: 100%;
  503. max-height: 475px;
  504. }
  505. &__description-top {
  506. flex-grow: 1;
  507. overflow: auto;
  508. height: 100%;
  509. }
  510. &__comment-edit {
  511. display: block;
  512. text-align: right;
  513. margin-right: 10px;
  514. margin-top: -5px;
  515. margin-bottom: -5px;
  516. margin-left: auto;
  517. color: rgba(0, 0, 0, 0.45);
  518. width: 20px;
  519. height: 20px;
  520. cursor: pointer;
  521. transition: color 0.3s;
  522. font-size: 1em;
  523. transform: rotate(90deg);
  524. svg {
  525. width: 15px;
  526. height: 20px;
  527. }
  528. &:hover {
  529. color: #595959;
  530. }
  531. }
  532. .ant-empty-image {
  533. height: auto;
  534. }
  535. }
  536. .PostCommentAuthor {
  537. color: $defaultColorB;
  538. font-size: 1.2em;
  539. font-weight: 500;
  540. }
  541. .ContainerInner {
  542. width: 100%;
  543. background-color: $defaultColorW;
  544. padding: 15px 25px;
  545. box-shadow: 0 0 6px 2px rgba($defaultColorB, 0.5);
  546. border-radius: 5px;
  547. }
  548. .ContainEditPost {
  549. .title {
  550. width: 100%;
  551. text-align: center;
  552. display: inline-block;
  553. }
  554. .description {
  555. white-space: break-spaces;
  556. }
  557. }
  558. .EditPhotos {
  559. &__box {
  560. margin-bottom: 15px;
  561. }
  562. .ant-upload-drag-icon {
  563. margin-bottom: 5px;
  564. }
  565. }
  566. .SortableList {
  567. display: grid;
  568. grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  569. grid-gap: 10px;
  570. justify-items: center;
  571. }
  572. .SortableItemMask {
  573. position: absolute;
  574. display: flex;
  575. align-items: center;
  576. justify-content: center;
  577. top: 0px;
  578. left: 0px;
  579. right: 0px;
  580. border-radius: 4px;
  581. background-color: rgba($defaultColorB, 0.5);
  582. opacity: 0;
  583. z-index: 2;
  584. transition: 0.3s;
  585. button {
  586. svg {
  587. width: 15px;
  588. height: 15px;
  589. fill: $defaultColorW;
  590. }
  591. }
  592. }
  593. .SortableItem {
  594. .Handle {
  595. position: relative;
  596. max-width: 130px;
  597. border-radius: 4px;
  598. display: flex;
  599. align-items: center;
  600. justify-content: center;
  601. box-shadow: 0 0 6px 2px rgba($defaultColorB, 0.3);
  602. img,
  603. video {
  604. width: 100%;
  605. object-fit: cover;
  606. max-height: 150px;
  607. }
  608. &:hover .SortableItemMask {
  609. opacity: 1;
  610. }
  611. }
  612. .hiden-item,
  613. .ant-image-mask,
  614. .ant-image {
  615. display: none;
  616. position: absolute;
  617. top: 0;
  618. left: 0;
  619. clip: rect(0 0 0);
  620. pointer-events: none;
  621. padding: 10px;
  622. }
  623. }
  624. .ant-image-preview-img-wrapper {
  625. display: flex;
  626. align-items: center;
  627. justify-content: center;
  628. img {
  629. max-height: 60vh;
  630. }
  631. }
  632. .ant-dropdown {
  633. box-shadow: 0 0 2px 0 $defaultColorB;
  634. }
  635. .avatar-uploader > .ant-upload {
  636. width: 150px;
  637. height: 150px;
  638. border-radius: 50%;
  639. position: relative;
  640. .edit-icon {
  641. position: absolute;
  642. top: 0;
  643. right: 0;
  644. }
  645. }
  646. .EditMyData {
  647. label {
  648. display: flex;
  649. align-items: flex-end;
  650. padding-bottom: 10px;
  651. flex-wrap: nowrap;
  652. }
  653. h4 {
  654. margin: 0;
  655. padding-right: 10px;
  656. }
  657. button {
  658. display: none;
  659. margin: 0 auto;
  660. &.--block {
  661. display: block;
  662. }
  663. }
  664. &__lable-box {
  665. span {
  666. display: block;
  667. text-align: center;
  668. }
  669. input.--error {
  670. border-color: #ff4d4f;
  671. max-width: 100%;
  672. }
  673. .EditMyData__lable-text {
  674. font-size: 1.3em;
  675. display: inline-block;
  676. padding: 0 10px;
  677. span {
  678. display: inline-block;
  679. }
  680. svg {
  681. margin-left: 10px;
  682. }
  683. }
  684. }
  685. }