123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705 |
- // RESET STYLE
- html {
- box-sizing: border-box;
- }
- *,
- *::after,
- *::before {
- box-sizing: inherit;
- }
- ul[class],
- ol[class] {
- padding: 0;
- }
- body,
- h1,
- h2,
- h3,
- h4,
- h5,
- h6,
- p,
- ul[class],
- ol[class],
- li,
- figure,
- figcaption,
- blockquote,
- dl,
- dd {
- margin: 0;
- }
- ul[class] {
- list-style: none;
- }
- img {
- max-width: 100%;
- display: block;
- }
- input,
- button,
- textarea,
- select {
- font: inherit;
- }
- $defaultColorW: #fff;
- $defaultColorB: #000;
- body {
- background-color: #f9f9f9;
- color: $defaultColorB;
- }
- video {
- width: 100%;
- margin: 0 auto;
- max-height: 500px;
- }
- .Header {
- display: flex;
- background-color: #ececec;
- justify-content: space-between;
- align-items: center;
- .Logo {
- display: block;
- }
- &__inner {
- max-width: 1250px;
- margin: 0 auto;
- }
- &__search {
- display: block;
- padding: 0 10px;
- }
- &__search-link {
- display: flex;
- align-items: center;
- padding: 5px 20px;
- transition: all 0.3s;
- strong {
- padding-left: 15px;
- color: $defaultColorB;
- }
- &:hover {
- background-color: #0057ff1f;
- }
- }
- &__search-drop {
- max-width: 500px;
- min-width: 320px;
- max-height: 500px;
- padding: 16px 0;
- overflow: auto;
- }
- &__userNav {
- div {
- padding-left: 20px;
- }
- a {
- display: flex;
- align-items: center;
- justify-content: center;
- &.active {
- svg {
- fill: $defaultColorB;
- }
- }
- }
- svg {
- width: 24px;
- height: 24px;
- }
- }
- }
- .PreloaderImg {
- position: fixed;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- z-index: 2;
- background-color: rgba(#fff, 0.6);
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .ant-popover {
- padding-top: 12px;
- &-arrow {
- width: 14px;
- height: 19px;
- &-content {
- width: 14px;
- height: 14px;
- }
- }
- &-inner-content {
- padding: 2px 0 0;
- }
- }
- .dropMenu {
- max-width: 200px;
- min-width: 150px;
- .anticon.anticon-user,
- li {
- transition: all 0.3s;
- &:hover {
- background-color: rgba($color: #0057ff, $alpha: 0.12);
- }
- }
- a {
- transition: all 0.3s;
- }
- &__icon {
- margin-right: 2px;
- svg {
- width: 15px;
- height: 15px;
- }
- }
- button {
- cursor: pointer;
- text-align-last: left;
- width: 100%;
- background-color: transparent;
- border: none;
- padding: 0;
- margin: 0;
- transition: all 0.3s;
- }
- }
- .Authorization {
- height: 100%;
- background-position: right top;
- background-repeat: no-repeat;
- background-size: cover;
- a {
- font-size: 1.2em;
- }
- .active {
- color: red;
- }
- .ant-form-item {
- margin-bottom: 10px;
- }
- &__form {
- height: 100vh;
- padding-right: calc(10vw + 25px);
- }
- .login-form {
- text-align: center;
- button {
- width: 75%;
- }
- }
- .ant-divider {
- margin-bottom: 0;
- }
- }
- .ant-layout-header {
- height: 58px;
- line-height: 58px;
- padding: 0 20px;
- background-color: $defaultColorW;
- box-shadow: 0 0 9px 5px rgba($color: #001529, $alpha: 0.4);
- }
- .Main {
- position: relative;
- padding-top: 58px;
- &__inner {
- padding-top: 22px;
- }
- }
- .owner .nick {
- padding-left: 15px;
- }
- .Post {
- padding: 10px 0;
- position: relative;
- img {
- width: 100%;
- margin: 0 auto;
- padding: 1px;
- max-height: 600px;
- object-fit: contain;
- }
- &__dots.slick-dots {
- bottom: -14px;
- li {
- border-radius: 50%;
- background-color: rgba($color: #1890ff, $alpha: 0.5);
- width: 10px;
- height: 10px;
- overflow: hidden;
- &.slick-active {
- border-radius: 5px;
- width: 20px;
- button {
- background-color: #1890ff;
- }
- }
- button {
- height: 10px;
- }
- }
- }
- .ant-empty-image {
- height: 300px;
- img {
- margin: 0 auto;
- width: auto;
- }
- }
- &__btn {
- border: none;
- position: absolute;
- padding: 0;
- background-color: rgba(0, 0, 0, 0.165);
- bottom: 1px;
- top: 1px;
- width: 50px;
- transition: 0.4s;
- z-index: 5;
- cursor: pointer;
- svg {
- fill: $defaultColorW;
- opacity: 0.5;
- width: 50px;
- height: 30px;
- transition: 0.4s;
- }
- }
- &__prev {
- left: 0px;
- opacity: 0;
- &.--active {
- opacity: 1;
- }
- }
- &__next {
- right: 0px;
- opacity: 0;
- &.--active {
- opacity: 1;
- }
- }
- &__heart,
- &__collection {
- button {
- display: inline-block;
- min-width: auto;
- width: 30px;
- height: 30px;
- border: none;
- padding: 0;
- box-shadow: none;
- }
- strong {
- display: inline-block;
- }
- }
- &__collection {
- button {
- margin-right: auto;
- }
- svg {
- stroke-width: 2px;
- width: 24px;
- height: 24px;
- }
- }
- &__comments {
- a {
- font-size: 1.1em;
- color: $defaultColorB;
- font-weight: 500;
- }
- }
- &__send-comment {
- button {
- border: none;
- box-shadow: none;
- }
- }
- &__panel-btn {
- button {
- cursor: pointer;
- border: none;
- padding: 0;
- margin: 0;
- background-color: inherit;
- transition: all 0.3s;
- &:hover {
- text-shadow: 1px 1px 3px $defaultColorB;
- }
- }
- }
- }
- .Modal {
- .ant-modal-body {
- padding-left: 0;
- padding-right: 0;
- }
- &__inner {
- overflow: auto;
- max-height: 400px;
- .ant-skeleton-header {
- padding-left: 20px;
- }
- }
- li {
- padding-left: 35px;
- padding-right: 35px;
- }
- }
- .Profile {
- width: 100%;
- padding: 10px;
- padding-bottom: 30px;
- h1 {
- line-height: 1;
- }
- a {
- display: inline-block;
- }
- &__data {
- padding-top: 10px;
- }
- &__name {
- padding-bottom: 10px;
- }
- &__login {
- color: #8d8d8d;
- }
- &__count {
- padding-top: 10px;
- strong {
- font-size: 1.2em;
- padding-right: 5px;
- }
- span {
- font-size: 1.2em;
- }
- button {
- padding: 0;
- border: none;
- }
- }
- button {
- color: $defaultColorB;
- }
- &__link-message {
- display: inline-block;
- background: #1890ff;
- line-height: 1.5715;
- box-shadow: 0 2px 0 rgb(0 0 0 / 2%);
- transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
- height: 32px;
- padding: 4px 15px;
- font-size: 14px;
- border-radius: 2px;
- color: rgba(0, 0, 0, 0.85);
- border: 1px solid #1890ff;
- &:hover {
- color: $defaultColorW;
- border-color: #40a9ff;
- background: #40a9ff;
- }
- }
- &__created {
- padding: 10px 0;
- }
- &__post {
- padding: 2px;
- div {
- padding: 0;
- }
- img,
- video {
- width: 100%;
- height: 100%;
- max-height: 175px;
- margin: 0 auto;
- object-fit: cover;
- }
- }
- &__box {
- position: relative;
- &-icon {
- position: absolute;
- top: 0;
- right: 0;
- }
- &-icon--video {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- font-size: 2.5em;
- svg {
- fill: $defaultColorW;
- stroke: $defaultColorB;
- }
- }
- }
- }
- .PostOne {
- max-width: 1250px;
- padding: 40px 15px 0;
- margin: 0 auto;
- &__inner {
- display: grid;
- grid-template-columns: repeat(2, 1fr);
- grid-template-rows: 0.1fr 1fr;
- grid-column-gap: 0px;
- grid-row-gap: 0px;
- align-items: center;
- box-shadow: 0 0 6px 2px rgba($color: $defaultColorB, $alpha: 0.5);
- border-radius: 5px;
- max-height: 650px;
- }
- &__title {
- grid-area: 1 / 2 / 2 / 3;
- padding: 10px 20px 5px;
- background-color: $defaultColorW;
- & .owner {
- font-size: 1.2em;
- font-weight: 500;
- }
- }
- &__image {
- grid-area: 1 / 1 / 3 / 2;
- width: 60vw;
- max-width: 700px;
- height: 100%;
- background-color: rgb(87, 87, 87);
- img {
- max-width: 100%;
- max-height: 550px;
- min-height: 450px;
- margin: 0 auto;
- object-fit: cover;
- }
- .Post__dots.slick-dots {
- bottom: 12px;
- }
- }
- &__description {
- grid-area: 2 / 2 / 3 / 3;
- background-color: $defaultColorW;
- padding: 5px 20px;
- height: 100%;
- .ant-typography {
- overflow-wrap: anywhere;
- margin-bottom: 5px;
- }
- .ant-divider {
- margin: 0 0 15px 0;
- }
- }
- &__description-inner {
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- height: 100%;
- max-height: 475px;
- }
- &__description-top {
- flex-grow: 1;
- overflow: auto;
- height: 100%;
- }
- &__comment-edit {
- display: block;
- text-align: right;
- margin-right: 10px;
- margin-top: -5px;
- margin-bottom: -5px;
- margin-left: auto;
- color: rgba(0, 0, 0, 0.45);
- width: 20px;
- height: 20px;
- cursor: pointer;
- transition: color 0.3s;
- font-size: 1em;
- transform: rotate(90deg);
- svg {
- width: 15px;
- height: 20px;
- }
- &:hover {
- color: #595959;
- }
- }
- .ant-empty-image {
- height: auto;
- }
- }
- .PostCommentAuthor {
- color: $defaultColorB;
- font-size: 1.2em;
- font-weight: 500;
- }
- .ContainerInner {
- width: 100%;
- background-color: $defaultColorW;
- padding: 15px 25px;
- box-shadow: 0 0 6px 2px rgba($defaultColorB, 0.5);
- border-radius: 5px;
- }
- .ContainEditPost {
- .title {
- width: 100%;
- text-align: center;
- display: inline-block;
- }
- .description {
- white-space: break-spaces;
- }
- }
- .EditPhotos {
- &__box {
- margin-bottom: 15px;
- }
- .ant-upload-drag-icon {
- margin-bottom: 5px;
- }
- }
- .SortableList {
- display: grid;
- grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
- grid-gap: 10px;
- justify-items: center;
- }
- .SortableItemMask {
- position: absolute;
- display: flex;
- align-items: center;
- justify-content: center;
- top: 0px;
- left: 0px;
- right: 0px;
- border-radius: 4px;
- background-color: rgba($defaultColorB, 0.5);
- opacity: 0;
- z-index: 2;
- transition: 0.3s;
- button {
- svg {
- width: 15px;
- height: 15px;
- fill: $defaultColorW;
- }
- }
- }
- .SortableItem {
- .Handle {
- position: relative;
- max-width: 130px;
- border-radius: 4px;
- display: flex;
- align-items: center;
- justify-content: center;
- box-shadow: 0 0 6px 2px rgba($defaultColorB, 0.3);
- img,
- video {
- width: 100%;
- object-fit: cover;
- max-height: 150px;
- }
- &:hover .SortableItemMask {
- opacity: 1;
- }
- }
- .hiden-item,
- .ant-image-mask,
- .ant-image {
- display: none;
- position: absolute;
- top: 0;
- left: 0;
- clip: rect(0 0 0);
- pointer-events: none;
- padding: 10px;
- }
- }
- .ant-image-preview-img-wrapper {
- display: flex;
- align-items: center;
- justify-content: center;
- img {
- max-height: 60vh;
- }
- }
- .ant-dropdown {
- box-shadow: 0 0 2px 0 $defaultColorB;
- }
- .avatar-uploader > .ant-upload {
- width: 150px;
- height: 150px;
- border-radius: 50%;
- position: relative;
- .edit-icon {
- position: absolute;
- top: 0;
- right: 0;
- }
- }
- .EditMyData {
- label {
- display: flex;
- align-items: flex-end;
- padding-bottom: 10px;
- flex-wrap: nowrap;
- }
- h4 {
- margin: 0;
- padding-right: 10px;
- }
- button {
- display: none;
- margin: 0 auto;
- &.--block {
- display: block;
- }
- }
- &__lable-box {
- span {
- display: block;
- text-align: center;
- }
- input.--error {
- border-color: #ff4d4f;
- max-width: 100%;
- }
- .EditMyData__lable-text {
- font-size: 1.3em;
- display: inline-block;
- padding: 0 10px;
- span {
- display: inline-block;
- }
- svg {
- margin-left: 10px;
- }
- }
- }
- }
|