Advertisement
waitingmoon

Untitled

May 22nd, 2024 (edited)
789
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.11 KB | None | 0 0
  1. /* スマホでカードをリストにする */
  2. @media screen and (max-width: 480px) {
  3.     .page-archive .archive-entries .archive-entry {
  4.         padding: 16px 0 16px 160px;
  5.         position: relative;
  6.         min-height: 108px; /* タイトルが2行以下の場合にリストの高さが減るのを防ぐ */
  7.     }
  8.     .page-archive .archive-entries .archive-entry-header {
  9.         padding: 0 16px;
  10.     }
  11.     .page-archive .archive-entries .archive-date{
  12.         margin: 0;
  13.     }
  14.     .page-archive .archive-entries .entry-title,
  15.     .page-archive .archive-entries .entry-title a{
  16.         font-size: 1em; /*見出しのフォントサイズ */
  17.     }
  18.     .page-archive .archive-entries .categories {
  19.         display: none; /* カテゴリ非表示 */
  20.     }
  21.     .page-archive .archive-entries .entry-thumb-link {
  22.         position: absolute;
  23.         top: 0;
  24.         left: 0;
  25.         width: 144px;
  26.         height: auto;
  27.         padding: 0;
  28.         margin: 16px 0 0 16px;
  29.     }
  30.     .page-archive .archive-entries .entry-thumb {
  31.         position: static;
  32.         height: 0;
  33.         padding-top: 52.5%;
  34.     }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement