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

식물 vs 좀비 위키
둘러보기로 이동 검색으로 이동
imported>Ljyee
편집 요약 없음
imported>Ljyee
편집 요약 없음
19번째 줄: 19번째 줄:


   box-sizing: border-box;
   box-sizing: border-box;
   filter: drop-shadow(10px 12px 7px rgba(0, 0, 0, 0.23));
   filter: drop-shadow(8px 9px 4px rgba(0, 0, 0, 0.22));
}
}
/* 메시지 전체 끝 */
/* 메시지 전체 끝 */
49번째 줄: 49번째 줄:


.pvz-message-image {
.pvz-message-image {
   position: relative;
   position: absolute;
   z-index: 1;
   z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 23%;
  display: grid;
  place-items: center;
  min-width: 0;
   text-align: center;
   text-align: center;
  pointer-events: none;
}
}


58번째 줄: 68번째 줄:
   display: inline-block;
   display: inline-block;
   max-width: 100%;
   max-width: 100%;
  pointer-events: auto;
}
}


63번째 줄: 74번째 줄:
   display: block;
   display: block;
   max-width: 100% !important;
   max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
   height: auto !important;
   height: auto !important;
   margin: 0 auto;
   margin: 0 auto;


   filter: drop-shadow(2px 4px 2px rgba(0, 0, 0, 0.28));
  object-fit: contain;
   filter: drop-shadow(2px 3px 1px rgba(0, 0, 0, 0.24));
}
}


83번째 줄: 97번째 줄:


   color: var(--message-text);
   color: var(--message-text);
   font-size: 0.92em;
   font-size: inherit;
   line-height: 1.58;
   line-height: 1.58;
   text-align: left;
   text-align: left;
93번째 줄: 107번째 줄:


   color: var(--message-text);
   color: var(--message-text);
   font-size: 1em;
   font-size: inherit;
   line-height: 1;
   line-height: 1;
   text-align: left;
   text-align: left;
165번째 줄: 179번째 줄:


   .pvz-message-heading {
   .pvz-message-heading {
     font-size: 23px;
     font-size: inherit;
   }
   }


   .pvz-message-content {
   .pvz-message-content {
     padding: 5px 0 0 6px;
     padding: 5px 0 0 6px;
     font-size: 17px;
     font-size: inherit;
     line-height: 1.55;
     line-height: 1.55;
   }
   }
183번째 줄: 197번째 줄:
     margin: 18px auto;
     margin: 18px auto;


     filter: drop-shadow(5px 7px 4px rgba(0, 0, 0, 0.2));
     filter: drop-shadow(4px 5px 3px rgba(0, 0, 0, 0.18));
   }
   }


190번째 줄: 204번째 줄:


     clip-path: polygon(25% 0, 100% 0, 100% 100%, 25% 100%, 0 50%);
     clip-path: polygon(25% 0, 100% 0, 100% 100%, 25% 100%, 0 50%);
  }
  .pvz-message-image {
    left: 25%;
   }
   }


205번째 줄: 223번째 줄:
   .pvz-message-content {
   .pvz-message-content {
     padding: 4px 0 0 5px;
     padding: 4px 0 0 5px;
     font-size: 14px;
     font-size: inherit;
     line-height: 1.55;
     line-height: 1.55;
   }
   }
212번째 줄: 230번째 줄:
     width: 100%;
     width: 100%;
     margin-bottom: 1px;
     margin-bottom: 1px;
     font-size: 18px;
     font-size: inherit;
   }
   }



2026년 7월 11일 (토) 20:24 판

/* =========================
Template:메시지/styles.css
========================= */

/* 메시지 전체 시작 */
.pvz-message {
  --message-color: #479745;
  --message-hole-bg: #fff2dc;
  --message-card-bg: #fffaf3;
  --message-text: #111;

  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);

  width: 90%;
  max-width: 750px;
  margin: 24px auto;

  box-sizing: border-box;
  filter: drop-shadow(8px 9px 4px rgba(0, 0, 0, 0.22));
}
/* 메시지 전체 끝 */

.pvz-message-tag {
  position: relative;
  min-width: 0;
  padding: 14px 12px 14px 48px;

  background: var(--message-color);
  clip-path: polygon(23% 0, 100% 0, 100% 100%, 23% 100%, 0 50%);
  overflow: hidden;
}

.pvz-message-hole {
  position: absolute;
  left: 11.5%;
  top: 50%;

  width: 24px;
  height: 24px;

  background: var(--message-hole-bg);
  border-radius: 50%;
  transform: translate(-50%, -50%);

  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.pvz-message-image {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 23%;

  display: grid;
  place-items: center;

  min-width: 0;
  text-align: center;
  pointer-events: none;
}

.pvz-message-image a,
.pvz-message-image .mw-file-description {
  display: inline-block;
  max-width: 100%;
  pointer-events: auto;
}

.pvz-message-image img {
  display: block;
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  margin: 0 auto;

  object-fit: contain;
  filter: drop-shadow(2px 3px 1px rgba(0, 0, 0, 0.24));
}

.pvz-message-card {
  min-width: 0;
  margin-left: -1px;
  padding: 14px 12px 12px 14px;

  background: var(--message-card-bg);
  border: 3px solid var(--message-color);
}

.pvz-message-content {
  min-width: 0;
  padding: 6px 0 0 7px;

  color: var(--message-text);
  font-size: inherit;
  line-height: 1.58;
  text-align: left;
}

.pvz-message-heading {
  margin: 0 0 2px;
  padding: 0;

  color: var(--message-text);
  font-size: inherit;
  line-height: 1;
  text-align: left;
}

.pvz-message-heading p {
  display: inline;
  margin: 0 !important;
  padding: 0 !important;
  line-height: inherit !important;
}

.pvz-message-text {
  min-width: 0;
  margin: 0;
  padding: 0;

  color: inherit;
  font-size: inherit;
  line-height: inherit;
  text-align: inherit;
}

.pvz-message-text p:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.pvz-message-text p:last-child {
  margin-bottom: 0;
}

/* 다크모드 대응 시작 */
@media (prefers-color-scheme: dark) {
  .pvz-message {
    --message-hole-bg: #352d23;
    --message-card-bg: #211e1a;
    --message-text: #f5efe6;
  }
}

html.skin-theme-clientpref-night .pvz-message,
html.client-dark-mode .pvz-message,
html.mw-theme-night .pvz-message,
html.theme-dark .pvz-message,
html.dark .pvz-message,
body.skin-theme-clientpref-night .pvz-message,
body.client-dark-mode .pvz-message,
body.mw-theme-night .pvz-message,
body.theme-dark .pvz-message,
body.dark .pvz-message {
  --message-hole-bg: #352d23;
  --message-card-bg: #211e1a;
  --message-text: #f5efe6;
}
/* 다크모드 대응 끝 */

/* 반응형 대응 시작 */
@media (max-width: 760px) {
  .pvz-message {
    grid-template-columns: 36% minmax(0, 1fr);
  }

  .pvz-message-tag {
    padding: 18px 16px 18px 50px;
  }

  .pvz-message-card {
    padding: 12px 10px 10px 12px;
  }

  .pvz-message-heading {
    font-size: inherit;
  }

  .pvz-message-content {
    padding: 5px 0 0 6px;
    font-size: inherit;
    line-height: 1.55;
  }
}

@media (max-width: 520px) {
  .pvz-message {
    grid-template-columns: 112px minmax(0, 1fr);

    width: 90%;
    max-width: 750px;
    margin: 18px auto;

    filter: drop-shadow(4px 5px 3px rgba(0, 0, 0, 0.18));
  }

  .pvz-message-tag {
    padding: 14px 8px 14px 34px;

    clip-path: polygon(25% 0, 100% 0, 100% 100%, 25% 100%, 0 50%);
  }

  .pvz-message-image {
    left: 25%;
  }

  .pvz-message-hole {
    left: 12.5%;
    width: 18px;
    height: 18px;
  }

  .pvz-message-card {
    padding: 9px 8px 8px 9px;
    border-width: 2px;
  }

  .pvz-message-content {
    padding: 4px 0 0 5px;
    font-size: inherit;
    line-height: 1.55;
  }

  .pvz-message-heading {
    width: 100%;
    margin-bottom: 1px;
    font-size: inherit;
  }

  .pvz-message-text {
    width: 100%;
  }
}
/* 반응형 대응 끝 */