.main { width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; } .wrapper { width: 90%; height: 90%; } .header { width: 100%; height: 10%; &__wrapper { width: 100%; height: 100%; border: 1px solid rgb(180, 180, 180); border-bottom: none; border-radius: 5px 5px 0 0; padding: 0 5px; &__article { width: 100%; height: 100%; display: flex; justify-content: space-between; align-items: center; &__title { width: 20%; height: 75%; display: flex; border-right: 1px solid rgb(180, 180, 180); justify-content: center; align-items: center; position: relative; &__name { position: absolute; top: -20%; left: 3px; font-size: 8px; font-family: "Montserrat", sans-serif; } &__text { font-size: 15px; font-family: "Montserrat", sans-serif; } } &__tags { width: 60%; height: 75%; display: flex; justify-content: start; align-items: center; flex-wrap: wrap; padding: 0 5px; position: relative; overflow-y: auto; // &::-webkit-scrollbar { // width: 10px; // } // &::-webkit-scrollbar-thumb { // background-color: rgb(200, 200, 200); // } // &::-webkit-scrollbar-button:single-button { // background-color: #bbbbbb; // display: block; // border-style: solid; // height: 10px; // width: 16px; // } &__item { padding: 0 5px; border-radius: 5px; border: 1px solid rgb(100, 100, 100); margin: 1px 3px; span { } } } &__owner { width: 20%; height: 75%; border-left: 1px solid rgb(180, 180, 180); display: flex; justify-content: center; align-items: center; position: relative; &__name { position: absolute; top: -20%; right: 3px; font-size: 8px; font-family: "Montserrat", sans-serif; } &__text { font-size: 15px; font-family: "Montserrat", sans-serif; } } } &__tags { width: 100%; height: 50%; display: flex; justify-content: start; align-items: center; margin-top: 20px; &__item { padding: 0 5px; border-radius: 5px; border: 1px solid rgb(100, 100, 100); margin: 1px 3px; span { } } } } } .content { width: 100%; height: 90%; &__wrapper { width: 100%; height: 100%; border: 1px solid rgb(180, 180, 180); padding: 5px; // border-radius: 0 0 5px 5px; overflow: auto; &::-webkit-scrollbar { width: 7px; } &::-webkit-scrollbar { height: 7px; } &::-webkit-scrollbar-thumb { background-color: rgb(200, 200, 200); } &__article { max-width: 100%; height: 100%; } } } // .image { // width: 400px; // height: 200px; // border: 4px solid red // img { // width: 400px; // height: 200px; // aspect-ratio: 1000/700; // } // }