1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*頭貼名片*/
#plurk-dashboard .dash-segment-profile #dash-profile {
  height: 200px;
}
#plurk-dashboard .dash-segment-profile #dash-profile img.profile-pic {
  width: 302px;
  height: 0px;
  padding-top: 200px;
  background: url('圖片連結');
  background-size: cover;
  transition:0.3s; /*漸變秒數可自行調整*/
}

#plurk-dashboard .dash-segment-profile #dash-profile img.profile-pic:hover
{ background: url('滑鼠移至時的圖片連結');
  background-size: cover;
  transition:0.3s; /*漸變秒數可自行調整*/
}

#plurk-dashboard .dash-segment-profile #dash-profile img.profile-pic:active 
{ background: url('長按時的圖片連結');
  background-size: cover;
  transition:0.3s; /*漸變秒數可自行調整*/
}

#plurk-dashboard .dash-segment-profile #dash-profile #full_name {
  margin-left: 10px;
  padding-top: 160px;
}

#plurk-dashboard .dash-segment-profile #dash-profile .profile-info {
  display: none;
}