Last active
February 18, 2016 16:13
-
-
Save knowlet/b7ce0bdf36141242b1fb to your computer and use it in GitHub Desktop.
My Plurk custom CSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 河道上的噗 */ | |
.plurk_cnt { | |
/* 設定噗跟預設一樣大小的圓角 */ | |
border-radius: 0 0 10px 10px; | |
/* 調整成跟展開一樣寬 */ | |
min-width: 380px; | |
} | |
.response_time.plurk_cnt { | |
/* 110 + 10 + 2 */ | |
min-width: 122px; | |
border-radius: 0 10px 10px 0; | |
} | |
.info_box.controller { | |
border-radius: 0 0 10px 10px; | |
} | |
.response_box { | |
/* 242 - 60 - 24 + 10 */ | |
min-height: 168px; | |
} | |
/* 回應數字 */ | |
.response_count { | |
/* 數字有點大,九成剛好是20px跟大頭貼一樣高 */ | |
font-size: 90%; | |
/* 修正數字框沒有貼齊噗頂 */ | |
vertical-align: middle; | |
border-radius: 0 1px 1px 0; | |
} | |
/* 噗內文字 */ | |
#timeline_cnt .plurk .text_holder { | |
/* 繼承噗的寬度 */ | |
width: inherit; | |
} | |
/* 點開的噗 */ | |
.plurk_box .plurk_cnt { | |
/* 圓角消失 */ | |
border-radius: initial; | |
} | |
/* 回應齊頭在暱稱下 */ | |
.list .td_qual { | |
position: absolute; | |
} | |
.list .text_holder { | |
margin: 1.6em 5px 0; | |
} | |
/* 隱藏醜醜廣告 */ | |
#dashboard_holder div.adsense { | |
margin: -10rem 0 0 -9999px; | |
} | |
/* 使用舊版橫向展開選單 */ | |
#filter_tab li {clear:none;width:auto;margin-right:5px;} | |
#filter_tab a {height:25px !important; margin:0 !important;} | |
.timeline_control {margin-left:0} | |
#timeline_control_holder {width:100%;} | |
#updater {left:5px;} | |
/* 調整主控部分不統一高度*/ | |
#plurk-dashboard #dash-stats .dash-stats-karma { | |
margin: 0 | |
} | |
#plurk-dashboard #dash-friends-pics, #plurk-dashboard #dash-fans-pics { | |
margin-top: .2em; | |
} | |
.dash-segment-friends .segment-content, .dash-segment-fans .segment-content { | |
padding: 10px; | |
} | |
#plurk-dashboard h2 { | |
padding: 0 | |
} | |
#dash-stats { | |
padding: 5px; | |
} | |
.friend_holder ul li { | |
margin: 4px 1.4px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment