틀:메시지/styles.css: 두 판 사이의 차이

식물 vs 좀비 위키
imported>Ljyee
편집 요약 없음
imported>Ljyee
편집 요약 없음
6번째 줄: 6번째 줄:
.pvz-message {
.pvz-message {
   --message-color: #479745;
   --message-color: #479745;
  --message-color-soft: #75b86f;


   position: relative;
   position: relative;
   display: grid;
   display: grid;
   grid-template-columns: 9px minmax(0, 1fr);
   grid-template-columns: minmax(190px, 34%) minmax(0, 1fr);


   width: min(94%, 760px);
   width: min(94%, 980px);
   margin: 28px auto 22px;
   min-height: 210px;
 
   margin: 30px auto 24px;
  background: #f6e4c4;
  border: 1.5px solid #c89d64;
  border-radius: 12px;
 
   box-shadow:
    0 3px 0 #9a6332,
    0 7px 16px rgba(63, 37, 15, 0.18);


  filter: drop-shadow(10px 12px 10px rgba(0, 0, 0, 0.23));
   box-sizing: border-box;
   box-sizing: border-box;
  overflow: hidden;
}
}
/* 메시지 전체 끝 */
/* 메시지 전체 끝 */


/* 메시지 장식선 시작 */
/* 메시지 태그 영역 시작 */
.pvz-message-accent {
.pvz-message-tag {
   position: relative;
   position: relative;
   z-index: 1;
   display: flex;
 
   align-items: center;
   width: 100%;
   justify-content: center;
  min-height: 100%;
 
  background:
    linear-gradient(
      180deg,
      var(--message-color-soft) 0%,
      var(--message-color) 48%,
      #2f6f2c 100%
    );
 
   border-right: 1px solid rgba(15, 71, 40, 0.45);
}
 
.pvz-message-accent::before,
.pvz-message-accent::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 4px;
  height: 4px;
 
  background: #f4d38f;
  border: 1px solid #8b5a2b;
  border-radius: 50%;
 
  transform: translateX(-50%);
}
 
.pvz-message-accent::before {
  top: 12px;
}
 
.pvz-message-accent::after {
  bottom: 12px;
}
/* 메시지 장식선 끝 */


/* 메시지 본체 시작 */
.pvz-message-main {
  position: relative;
   min-width: 0;
   min-width: 0;
  min-height: 210px;
  padding: 22px 24px 22px 64px;


   padding: 0 16px 15px;
   background: var(--message-color);


   background:
   clip-path:
     radial-gradient(
     polygon(
       circle at 18px 16px,
       23% 0,
      rgba(126, 86, 42, 0.055) 0,
       100% 0,
       rgba(126, 86, 42, 0.055) 1px,
       100% 100%,
       transparent 1.5px
       23% 100%,
    ),
       0 50%
    radial-gradient(
      circle at 72px 54px,
      rgba(126, 86, 42, 0.04) 0,
      rgba(126, 86, 42, 0.04) 1px,
      transparent 1.5px
    ),
    #f6e4c4;
 
  background-size: 88px 72px, 110px 96px, auto;
 
  box-sizing: border-box;
}
/* 메시지 본체 끝 */
 
/* 메시지 제목 시작 */
.pvz-message-heading {
  position: relative;
  z-index: 2;
 
  display: inline-flex;
  align-items: center;
 
  max-width: calc(100% - 24px);
  min-height: 38px;
 
  margin: -10px 0 10px 4px;
  padding: 7px 18px 8px;
 
  background:
    linear-gradient(
      180deg,
       var(--message-color-soft) 0%,
      var(--message-color) 58%,
       #347d32 100%
     );
     );
  border: 1.5px solid #0f4728;
  border-radius: 8px 8px 8px 3px;
  box-shadow:
    0 2px 0 #6b3e1e,
    0 4px 8px rgba(42, 27, 12, 0.18);
  color: #fff;
  font-size: 17px;
  line-height: 1.28;


   box-sizing: border-box;
   box-sizing: border-box;
  overflow: hidden;
}
}
/* 메시지 태그 영역 끝 */


.pvz-message-heading::after {
/* 메시지 태그 구멍 시작 */
  content: "";
.pvz-message-hole {
   position: absolute;
   position: absolute;
   left: 13px;
   left: 11.5%;
   bottom: -8px;
   top: 50%;


   width: 0;
   width: 30px;
   height: 0;
   height: 30px;


   border-top: 8px solid #0f4728;
   background: #fff;
   border-right: 8px solid transparent;
   border-radius: 50%;
}
/* 메시지 제목 끝 */


/* 메시지 내용 영역 시작 */
   transform: translate(-50%, -50%);
.pvz-message-row {
   display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;


   min-height: 92px;
   box-shadow:
 
    inset 0 0 0 1px rgba(0, 0, 0, 0.08),
  padding: 4px 2px 0;
    0 1px 2px rgba(0, 0, 0, 0.12);
 
  box-sizing: border-box;
}
}
/* 메시지 내용 영역 끝 */
/* 메시지 태그 구멍 끝 */


/* 메시지 이미지 시작 */
/* 메시지 이미지 시작 */
.pvz-message-image-wrap {
.pvz-message-image {
   position: relative;
   position: relative;
  z-index: 1;


   display: grid;
   display: grid;
   place-items: center;
   place-items: center;


   width: 104px;
   width: 100%;
   height: 104px;
   min-width: 0;
}


  background:
.pvz-message-image a,
    radial-gradient(
.pvz-message-image .mw-file-description {
      circle at 35% 28%,
   display: grid;
      #fff7db 0,
   place-items: center;
      #fff7db 18%,
   max-width: 100%;
      #ead39e 19%,
      #ead39e 66%,
      #c79a56 67%,
      #c79a56 100%
    );
 
  border: 3px solid var(--message-color);
   border-radius: 50%;
 
   box-shadow:
    inset 0 0 0 3px #f8e9bd,
    0 3px 0 #8c562c,
    0 5px 10px rgba(60, 38, 17, 0.18);
 
   box-sizing: border-box;
}
}


.pvz-message-image-wrap::before {
.pvz-message-image img {
   content: "";
   display: block;
   position: absolute;
   max-width: 100% !important;
   inset: 8px;
   height: auto !important;


   border: 1px dashed rgba(15, 71, 40, 0.34);
   filter:
  border-radius: 50%;
    drop-shadow(2px 4px 2px rgba(0, 0, 0, 0.28));
 
  pointer-events: none;
}
}
/* 메시지 이미지 끝 */


.pvz-message-image {
/* 메시지 본문 카드 시작 */
.pvz-message-card {
   position: relative;
   position: relative;
   z-index: 1;
   z-index: 1;


   display: grid;
   display: flex;
   place-items: center;
   flex-direction: column;
  justify-content: center;


   width: 86px;
   min-width: 0;
   height: 86px;
   min-height: 210px;
}
  margin-left: -1px;
  padding: 26px 30px 28px 34px;


.pvz-message-image a,
   background: #fff0da;
.pvz-message-image .mw-file-description {
   border: 3px solid var(--message-color);
   display: grid;
   place-items: center;


   width: 100%;
   box-sizing: border-box;
  height: 100%;
}
}
/* 메시지 본문 카드 끝 */


.pvz-message-image img {
/* 메시지 제목 시작 */
   display: block;
.pvz-message-heading {
   margin: 0 0 8px;


   max-width: 100% !important;
   color: #000;
   max-height: 100% !important;
  font-size: 28px;
   line-height: 1.18;
  text-align: left;


   width: auto;
   box-sizing: border-box;
  height: auto;
 
  filter: drop-shadow(2px 3px 1px rgba(51, 34, 18, 0.24));
}
}
/* 메시지 이미지 끝 */
/* 메시지 제목 끝 */


/* 메시지 본문 시작 */
/* 메시지 본문 시작 */
244번째 줄: 134번째 줄:
   min-width: 0;
   min-width: 0;


  padding: 10px 12px 10px 4px;
   color: #111;
 
   font-size: 20px;
   color: #3c2a18;
   line-height: 1.58;
   font-size: 15px;
   line-height: 1.65;
   text-align: left;
   text-align: left;


263번째 줄: 151번째 줄:
/* 메시지 본문 끝 */
/* 메시지 본문 끝 */


/* 이미지가 없는 메시지 시작 */
/* 태블릿 대응 시작 */
.pvz-message-row > .pvz-message-content:only-child {
@media (max-width: 760px) {
  grid-column: 1 / -1;
  padding-left: 8px;
}
/* 이미지가 없는 메시지 끝 */
 
/* 모바일 대응 시작 */
@media (max-width: 600px) {
   .pvz-message {
   .pvz-message {
     width: calc(100% - 16px);
     grid-template-columns: minmax(150px, 36%) minmax(0, 1fr);
     margin-top: 24px;
     min-height: 180px;
    border-radius: 10px;
   }
   }


   .pvz-message-main {
   .pvz-message-tag {
     padding: 0 11px 12px;
    min-height: 180px;
     padding: 18px 16px 18px 50px;
   }
   }


   .pvz-message-heading {
   .pvz-message-hole {
     max-width: calc(100% - 12px);
     width: 24px;
     margin-left: 2px;
     height: 24px;
    padding: 7px 13px 8px;
  }


     font-size: 15px;
  .pvz-message-card {
     min-height: 180px;
    padding: 22px 22px 24px 26px;
   }
   }


   .pvz-message-row {
   .pvz-message-heading {
     grid-template-columns: 80px minmax(0, 1fr);
     font-size: 23px;
    gap: 9px;
  }


     min-height: 78px;
  .pvz-message-content {
    font-size: 17px;
     line-height: 1.55;
   }
   }
}
/* 태블릿 대응 끝 */


   .pvz-message-image-wrap {
/* 모바일 대응 시작 */
     width: 76px;
@media (max-width: 520px) {
    height: 76px;
   .pvz-message {
     grid-template-columns: 112px minmax(0, 1fr);


     border-width: 2px;
     width: calc(100% - 12px);
    min-height: 150px;
    margin: 22px auto 18px;
 
    filter: drop-shadow(5px 7px 6px rgba(0, 0, 0, 0.2));
   }
   }


   .pvz-message-image {
   .pvz-message-tag {
     width: 62px;
     min-height: 150px;
     height: 62px;
     padding: 14px 8px 14px 34px;
 
    clip-path:
      polygon(
        25% 0,
        100% 0,
        100% 100%,
        25% 100%,
        0 50%
      );
   }
   }


   .pvz-message-content {
   .pvz-message-hole {
     padding: 8px 4px;
     left: 12.5%;
 
     width: 18px;
     font-size: 14px;
     height: 18px;
     line-height: 1.6;
   }
   }
}


@media (max-width: 400px) {
   .pvz-message-card {
   .pvz-message-row {
     min-height: 150px;
     grid-template-columns: 1fr;
    padding: 16px 14px 18px 16px;
    border-width: 2px;
   }
   }


   .pvz-message-image-wrap {
   .pvz-message-heading {
     margin: 2px auto 4px;
     margin-bottom: 5px;
    font-size: 18px;
    line-height: 1.22;
   }
   }


   .pvz-message-content {
   .pvz-message-content {
     padding: 6px 4px 8px;
     font-size: 14px;
    line-height: 1.55;
   }
   }
}
}
/* 모바일 대응 끝 */
/* 모바일 대응 끝 */