1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
/* 重置css */
#plurk-dashboard #dash-profile #profile_pic { position: unset; height: auto; width: auto; }
#plurk-dashboard #dash-profile :is(*, #full_name) { position: unset; margin: 0; }

/* 個人資訊排列方式 */
#plurk-dashboard #dash-profile { display: grid; gap: 4px; align-items: end; height: auto; grid-template-columns: 1fr auto; }
#plurk-dashboard #dash-profile > :not(.profile-info, .profile-icons) { grid-column: 2 span; }

/* 換頭貼 */
#plurk-dashboard #dash-profile #profile_pic {
  /* 這裡勿動 */ width: 100%; height: 0; transition: background .6s; background: var(--1) no-repeat center / cover;
  /* 圖片高度 */ padding-top: 200px;
  --圖1: url(https://cdn.pixabay.com/photo/2017/11/14/13/06/kitty-2948404_1280.jpg);
  --圖2: url(https://images.plurk.com/236AzfTpKnjL2NUu8Tg432.png);
}
#plurk-dashboard #dash-profile #profile_pic:hover { background-image: var(--2); }