메인 수정 중

This commit is contained in:
2025-04-26 15:30:32 +09:00
parent c6df25e0f2
commit 4e029aac76
7 changed files with 1724 additions and 62 deletions

View File

@@ -1390,4 +1390,12 @@
margin-top: 0;
}
}
.specNoti {
display: block;
max-width: 120rem;
height: 6.5rem;
margin: 0 auto;
background-color: #f1f1f1;
}
/*# sourceMappingURL=kiamain.css.map */

View File

@@ -153,7 +153,7 @@
background-size: 0;
@media(max-width: 1024px){
position: relative;
display: block;
display: flex;
width: 100%;
padding: 3rem;
background-size: cover;
@@ -194,7 +194,7 @@
border: 1px solid #9EA1A2;
font-size: 1.3rem;
font-weight: 400;
color: #9EA1A2;
color: #000;
line-height: 1;
&:not(:first-child){
margin-left: 0.3rem;
@@ -204,6 +204,20 @@
color: #FFFFFF;
border: 1px solid #FFFFFF;
}
&.available {
background-color: #5D7D2B;
color: #fff;
@media(max-width: 1024px){
border: 0;
}
}
&.promotion {
background-color: #F3C300;
color: #000;
@media(max-width: 1024px){
border: 0;
}
}
}
}
h2 {
@@ -243,9 +257,10 @@
.infoBottom {
display: flex;
justify-content: space-between;
align-items: center;
align-items: flex-end;
width: 100%;
@media(max-width: 1024px){
display: block;
margin-top: 2.5rem;
}
.listOtionPrice {
@@ -259,58 +274,84 @@
position: relative;
display: flex;
flex-direction: column;
justify-content: flex-start;
justify-content: space-between;
align-items: flex-start;
height: 9.2rem;
padding:1.6rem;
background-color: #F2F2F2;
border-radius: 0.6rem;
@media(max-width: 1024px){
flex-direction: row-reverse;
justify-content: flex-end;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
width: 100%;
height: 4.8rem;
padding: 1rem 1.6rem;
&:not(:first-child){
margin-top: 1rem;
}
}
dt {
font-size: 1.6rem;
font-size: 1.1rem;
font-weight: 400;
color: #676767;
@media(max-width: 1024px){
position: relative;
font-size: 1.4rem;
color: #FFFFFF;
margin-left: 0.8rem;
padding-left: 0.8rem;
&::before {
content: "";
position: absolute;
top: 0.1rem;
left: 0;
width: 0.1rem;
height: 1.4rem;
background-color: #DEDEDE;
}
color: #000;
margin-left: 0;
padding-left: 0;
// &::before {
// content: "";
// position: absolute;
// top: 0.1rem;
// left: 0;
// width: 0.1rem;
// height: 1.4rem;
// background-color: #DEDEDE;
// }
}
}
dd {
margin-top: 1rem;
// margin-top: 1.8rem;
font-size: 1.6rem;
font-weight: 600;
color: #000000;
@media(max-width: 1024px){
@media(max-width: 1024px){
display: flex;
flex-direction: column;
flex-wrap: wrap;
align-items: flex-end;
margin-top: 0;
font-size: 1.4rem;
color: #FFFFFF;
color: #000;
}
.price {
@media(max-width: 1024px){
display: flex;
em {
order: 2;
}
.dc {
order: 1;
margin-right: .4rem;
}
}
}
&.discount {
margin:.6rem 0 -1.5rem;
.discount {
display: block;
margin:.6rem 0 0;
font-size: 1.4rem;
color: #9EA1A2;
@media(max-width: 1024px){
text-align: left;
@media(max-width: 1024px){
width: 100%;
margin:.2rem 0 0;
color: #9EA1A2;
text-align: right;
}
b {
font-weight: 600;
@@ -320,26 +361,29 @@
text-decoration:line-through;
}
}
.dc {
font-size: 1.4rem;
color: #EA0029;
}
}
&:not(:first-child){
margin-left: 1.5rem;
padding-left: 1.5rem;
margin-left: 0.8rem;
// padding-left: 0.8rem;
@media(max-width: 1024px){
margin-left: 0;
padding-left: 0;
}
&::before {
content: "";
position: absolute;
top: 0.2rem;
left: 0;
width: 0.1rem;
height: 4.4rem;
background-color: #DEDEDE;
@media(max-width: 1024px){
display: none;
}
}
// &::before {
// content: "";
// position: absolute;
// top: 0.2rem;
// left: 0;
// width: 0.1rem;
// height: 4.4rem;
// background-color: #DEDEDE;
// @media(max-width: 1024px){
// display: none;
// }
// }
}
}
}
@@ -1256,4 +1300,43 @@
}
.specNoti {
display: flex;
align-items: center;
max-width: 120rem;
height: 6.5rem;
padding:0 2.4rem;
margin: 6rem auto -3rem;
background-color: #f1f1f1;
@include maxtablet{
padding:1.2rem;
margin: -2rem 2rem 2rem;
}
.tag {
display: flex;
align-items: center;
justify-content: center;
padding: 0.5rem 0.8rem;
margin: 0 0.4rem;
border: 1px solid #9EA1A2;
font-size: 1.3rem;
font-weight: 400;
color: #9EA1A2;
line-height: 1;
@include maxtablet{
font-size: 1.1rem;
color: #FFFFFF;
border: 1px solid #FFFFFF;
}
&.available {
background-color: #5D7D2B;
color: #fff;
}
&.promotion {
background-color: #F3C300;
color: #000;
}
}
}

1460
assets/css/kiamain.css Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long