반응형
목차
- 기능
- 소스코드
- 오류
- 남은 부분
기능
12, 13일 차에는 디자인에 중점을 두고 작업이 진행되었습니다. 이제 정말 완성이 된 느낌입니다.
소스코드
원래 main.css에 몰아서 링크 되어있었으나 이번 디자인 변경 작업을 진행하며 각각 다른 css파일을 만들어 제작되었습니다.
1. book.css
main {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 50px;
}
.book-detail {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 20px;
}
.book-info{
margin-right: 40px
}
.book-info h1 {
position: relative;
padding: 0;
margin-top: 0;
font-family: "Raleway", sans-serif;
font-weight: 300;
font-size: 40px;
color: #080808;
-webkit-transition: all 0.4s ease 0s;
-o-transition: all 0.4s ease 0s;
transition: all 0.4s ease 0s;
text-transform: capitalize;
}
.book-info h1:before {
position: absolute;
left: 0;
bottom: -10px;
width: 100px;
height: 2px;
content: "";
background-color: #c50000;
}
.book-info p {
margin-top: 20px;
display: block;
font-size: 0.5em;
line-height: 1.3;
font-size: 16px;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 4px;
line-height: 1.5em;
padding-left: 0.25em;
color: rgba(0, 0, 0, 0.8);
padding-bottom: 10px;
}
.book-detail img{
width: 300px;
margin-left: 40px;
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}
/* 장바구니 버튼 */
.book-info form {
margin-right: auto;
}
.book-info button[type="submit"] {
padding: 10px 20px;
font-size: 1.5rem;
border: none;
background-color: #000000;
color: #fff;
cursor: pointer;
transition: all 0.2s ease-in-out;
}
.book-info button[type="submit"]:hover {
background-color: #fff;
color: #007bff;
}
.book-info button[type="submit"]:focus {
outline: none;
box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5);
}
.book-description{
max-width: 1020px;
margin-top: 20px;
padding: 50px
}
@media screen and (max-width: 768px) {
main {
padding: 20px;
}
.book-info {
margin-bottom: 10px;
align-items: center;
text-align: center;
}
.book-detail img {
width: 200px;
margin-bottom: 10px;
}
.book-info h1 {
font-size: 1.8rem;
margin-bottom: 8px;
}
.book-info p {
font-size: 1.1rem;
margin-bottom: 3px;
}
.book-info form {
font-size: 1.2rem;
padding: 8px 16px;
}
}
/* 평균 평점 부분 */
.book-rating {
margin-bottom: 20px;
}
.book-rating p {
font-size: 1.2em;
margin: 0;
}
/* 리뷰 모음 부분 */
.review-assemble {
max-width: 1020px;
display: flex;
flex-direction: column;
align-items: center;
flex-wrap: wrap;
}
.review-assemble h2 {
font-size: 24px;
margin-bottom: 10px;
}
.review-assemble ul {
list-style: none;
padding: 0;
margin: 0;
max-height: 400px;
overflow-y: auto;
}
.review-assemble li {
border: 1px solid #ccc;
padding: 10px;
margin-bottom: 10px;
width: 1000px;
}
.review-assemble p {
margin: 0;
margin-bottom: 5px;
}
.review-assemble form {
display: inline-block;
margin-left: 10px;
}
.review-assemble button {
background-color: #fff;
border: 1px solid #ccc;
padding: 5px 10px;
cursor: pointer;
}
.review-assemble button:hover {
background-color: #f0f0f0;
}
/* 별점 부분 */
.star-rating{
display: inline-block; /* 하위 별점 이미지들이 있는 영역만 자리를 차지함.*/
direction: rtl; /* 이모지 순서 반전 */
border: 0; /* 필드셋 테두리 제거 */
}
.star-rating legend{
text-align: left;
}
.star-rating input[type=radio]{
display: none; /* 라디오박스 감춤 */
}
.star-rating label{
font-size: 3em; /* 이모지 크기 */
color: transparent; /* 기존 이모지 컬러 제거 */
text-shadow: 0 0 0 #f0f0f0; /* 새 이모지 색상 부여 */
}
.star-rating label:hover{
text-shadow: 0 0 0 #a00; /* 마우스 호버 */
}
.star-rating label:hover ~ label{
text-shadow: 0 0 0 #a00;
}
.star-rating input[type=radio]:checked ~ label{
text-shadow: 0 0 0 #a00;
}
/* 리뷰 작성 한줄평 부분 */
.review-comment textarea {
display: block;
box-sizing: border-box;
width: 100%;
height: 100px;
padding: 10px;
font-size: 16px;
line-height: 1.5;
border: 1px solid #ccc;
border-radius: 5px;
resize: none;
margin-bottom: 20px;
}
.review-comment label {
display: inline-block;
margin-bottom: 5px;
}
2. books.css
table {
border: 1px #a39485 solid;
font-size: .9em;
box-shadow: 0 2px 5px rgba(0,0,0,.25);
width: 100%;
border-collapse: collapse;
border-radius: 5px;
overflow: hidden;
margin-top: 20px;
margin-bottom: 20px;
}
th {
text-align: center;
}
thead {
font-weight: bold;
color: #fff;
background: #010238;
}
td, th {
padding: 1em .5em;
vertical-align: middle;
text-align: center;
}
td {
border-bottom: 1px solid rgba(0,0,0,.1);
background: #fff;
}
@media all and (max-width: 768px) {
table, thead, tbody, th, td, tr {
display: block;
}
table {
position: relative;
padding-bottom: 0;
border: none;
box-shadow: 0 0 10px rgba(0,0,0,.2);
}
thead {
float: left;
white-space: nowrap;
}
tbody {
overflow-x: auto;
overflow-y: hidden;
position: relative;
white-space: nowrap;
}
tr {
display: inline-block;
vertical-align: top;
}
th {
text-align: center;
border-bottom: 1px solid #010238;
}
td {
border-bottom: 1px solid #e5e5e5;
}
}
/* 페이지 넘기기 */
.pagination {
display: flex;
justify-content: center;
list-style: none;
}
.page-item {
margin: 0 5px;
}
.page-item.disabled span {
color: #aaa;
}
.page-item.active span {
background-color: #000000;
color: #fff;
border-color: #000000;
}
.page-link {
display: block;
padding: 5px 10px;
color: #000000;
border: 1px solid #000000;
border-radius: 5px;
text-decoration: none;
}
.page-link:hover {
background-color: #000000;
color: #fff;
}
3. cart.css
.flashes {
background-color: #f8d7da;
color: #721c24;
padding: 10px;
margin-bottom: 10px;
}
.cart-card {
border-radius: 5px;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
padding: 2rem;
margin-bottom: 2rem;
}
.cart-heading {
font-size: 2rem;
margin-bottom: 2rem;
}
.cart-table {
border-collapse: collapse;
margin-bottom: 2rem;
width: 100%;
}
.cart-table th,.cart-table td {
padding: 1rem;
border: 1px solid #ffffff;
}
.cart-table th {
text-align: left;
}
.cart-remove-button {
background-color: #fff;
border: none;
color: #dc3545;
cursor: pointer;
transition: background-color 0.2s ease-in-out;
}
.cart-remove-button:hover {
background-color: #dc3545;
color: #fff;
}
.cart-checkout-button {
display: inline-block;
background-color: #007bff;
border: none;
color: #fff;
padding: 0.5rem 1rem;
text-align: center;
text-decoration: none;
cursor: pointer;
border-radius: 5px;
}
.cart-checkout-button:hover {
background-color: #0056b3;
}
4. checkout.css
body {
font-family: 'Helvetica Neue', sans-serif;
background-color: #f4f4f4;
}
h1 {
font-size: 2rem;
margin-bottom: 2rem;
text-align: center;
}
table {
margin: 0 auto;
border-collapse: collapse;
background-color: #fff;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
overflow: hidden;
}
thead th {
padding: 1rem;
text-align: center;
background-color: #007bff;
color: #fff;
}
tbody td {
padding: 1rem;
text-align: center;
border-bottom: 1px solid #ddd;
}
tfoot th {
padding: 1rem;
text-align: right;
background-color: #007bff;
color: #fff;
}
tfoot td {
padding: 1rem;
text-align: center;
font-weight: bold;
}
tfoot td:before {
content: '$';
}
th, td {
width: 50%;
}
th:last-child, td:last-child {
width: 30%;
}
th:first-child, td:first-child {
width: 20%;
}
5. main.css
.section {
padding: 1rem;
}
h2 {
font-size: 24px;
margin-bottom: 1rem;
}
.book-list {
display: flex;
flex-direction: row;
justify-content: space-between;
flex-wrap: wrap;
}
.book {
width: 30%;
margin-bottom: 1rem;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
border-radius: 5px;
overflow: hidden;
}
.book img {
width: 70%;
height: 70%;
object-fit: cover;
margin: auto;
display: block;
max-width: 200px;
max-height: 300px;
}
.book h3 {
font-size: 18px;
margin: 0;
padding: 0.5rem;
}
.book tbody {
font-size: 18px;
margin: 0;
padding: 0.5rem;
text-overflow: ellipsis; /* display an ellipsis when text overflows */
white-space: nowrap; /* do not wrap the text */
overflow: hidden; /* hide any overflow text */
}
.book p {
font-size: 14px;
margin: 0;
padding: 0.5rem;
text-overflow: ellipsis; /* display an ellipsis when text overflows */
white-space: nowrap; /* do not wrap the text */
overflow: hidden; /* hide any overflow text */
}
.book button {
display: block;
margin: 0 auto;
padding: 0.5rem;
border: none;
border-radius: 20px;
background-color: #333;
color: #fff;
font-size: 16px;
cursor: pointer;
}
.book button:hover {
background-color: #666;
}
오류
1. 같은 가격일 경우 마이페이지에 접속이 불가능
2. 구매가 안되는 오류가 발생(datetime 변경하며 오류 발생)
3. 댓글 작성 시 오류 발생
남은 부분
1. 리뷰 샥제 기능
2. 책 PDF로 다운로드 할 수 있도록 기능 추가
반응형
'프로젝트' 카테고리의 다른 글
[프로젝트] 파이썬 미니 프로젝트 (Last Day) (0) | 2023.05.11 |
---|---|
[프로젝트] 파이썬 미니 프로젝트 Days.14 (0) | 2023.05.11 |
[프로젝트] 파이썬 미니 프로젝트 Day.11 (0) | 2023.05.11 |
[프로젝트] 파이썬 미니 프로젝트 Day.10 (0) | 2023.05.11 |
[프로젝트] 파이썬 미니 프로젝트 Day.9 (0) | 2023.05.11 |