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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
/*------------------------------------------------------------------------
*噗浪版型 Plurk CSS:Plurk your life
*設計出處 Design by Be Myself Inc. M6
*背景圖源 Background image from:(http://www.plurk.com/BlackLight)
*安裝網址 install: (http://www.plurk.com/installDesign/3997864-955d9ad864)
*更多佈景 More Themes: (http://www.flickr.com/groups/plurkcss)
------------------------------------------------------------------------*/
/***僅開放個人套用做為噗版,商業性質及其他利用方式請勿使用,謝謝****/



/*++++++++++++++++++++背景設定++++++++++++++++++++*/

/*+畫面佈景--------------------------------------------------*/
body, html
{
background:#000 url(http://i.imgur.com/8t078.jpg) right top no-repeat;
}

/*文字設定***/

/*去除連結虛線框*/
a {outline:0 !important;}

/*連結文字*/
a,a:link,a:visited, a:active
{
color:#aabbcc !important;
text-decoration:none;
text-transform:normal;
}

/*滑鼠移至效果*/
a:hover
{
color:#bbbbcc !important;
text-decoration:underline;
}

/*噗上的連結***/
.plurk a.ex_link, .text_holder a.ex_link,
.plurk a.ex_link:visited,
.plurk a.ex_link:active
{
color:#5577cc !important;
text-decoration:underline;
}

.plurk a.ex_link:hover, .text_holder a.ex_link:hover /*滑鼠移至效果*/
{
color:#556688 !important;
text-decoration:underline;
}


/*+時間軸主題背景--------------------------------------------------*/
#timeline_holder
{
background:none !important;
border-top:0px solid #666655 !important;
border-bottom:0px solid #666655 !important;
}

/*+主控台主題背景--------------------------------------------------*/
#plurk-dashboard
{
background:none;
border:0 !important;
}

/*+發噗區: Plurk 每日照片 搜尋--------------------------------------------------*/
#plurk_form {margin:0}
#pane_plurk,
#pane_daily_photo,
#pane_search
{
background:#556688;
border:0 !important;
-moz-border-radius:0px 0px 8px 8px;
-webkit-border-top-right-radius:0px;
-webkit-border-top-left-radius:0px;
-webkit-border-bottom-right-radius:8px;
-webkit-border-bottom-left-radius:8px;
}

/*+發噗區: 選項標籤--------------------------------------------------*/
#toggle_tab li,
#plurks_pane_li /*所有*/
{
color:#bbbbcc;
border:0 !important;
font-size:15px !important;
text-transform:uppercase; /*皆大寫*/
}
#toggle_tab li.tt_selected /*正選*/
{
background:#556688;
border:0 !important;
color:#fff !important;
-moz-border-radius:5px 5px 0px 0px;
-webkit-border-top-right-radius:5px;
-webkit-border-top-left-radius:5px;
-webkit-border-bottom-right-radius:0px;
-webkit-border-bottom-left-radius:0px;
}

/*+發噗區: 輸入欄位--------------------------------------------------*/

/*對齊中間***/
.plurkForm td {vertical-align:middle !important;}

/*主控台發噗區***/
textarea#input_big_private, /*發送私密噗視窗*/
textarea#input_big_private.content,
textarea#input_big,
textarea#input_permalink,
textarea#input_big.content
{
height:60px;
font-size:15px;
line-height:1.6em;
background:#bbbbcc !important;
color:#111 !important;
border-color:#999 #ccc #ccc #999 !important;
border-style:solid !important;
border-width:1px !important;
}

/*搜尋面板文字輸入區***/
input#current_query
{
height:30px;
font-size:15px;
background:#bbbbcc !important;
color:#111 !important;
border-color:#999 #ccc #ccc #999 !important;
border-style:solid !important;
border-width:1px !important;
}

/*每則噗回應發噗區***/
td.td_cnt textarea,
textarea#input_small
{
height:80px;
font-size:11px;
line-height:1.5em;
letter-spacing:0.05em;
background:#bbbbcc !important;
color:#111 !important;
border-color:#ccc #ccc #ccc #ccc !important;
border-style:solid !important;
border-width:1px !important;
}

/*+私密plurk 語系與選項--------------------------------------------------*/
#more_options,
#more_options .on,
#more_options_link /*按鈕*/
{
background:none !important;
border:0 !important;
color:#FFF !important;
font-size:11px !important;
}
#more_options_holder /*打開後*/
{
background:none !important;
border:0 !important;
color:#FFF !important;
}

#more_options td {background:none;font-size:11px !important;} /*標題*/
#more_options .caption {font-weight:normal;font-size:11px !important;}
#more_options .caption select /*語言選單表格*/
{
background:#111 !important;
border:1px solid #222 !important;
color:#ddd !important;
font-size:11px !important;
}

/*私密的噗給...*/
.private_to b
{
background:#000 !important;
color:#fff !important;
}

/*下拉式選單表格***/
.floater td {background:#111 !important;} /*表格整體底色*/
.selectedSmartInputItem {background:#111;border-bottom: 1px solid #ccc !important;} /*選擇底色*/
.wickEnabled /*欄位列 */
{
background:#111 !important;
color:#ddd !important;
}
.auto_ta /*表格*/
{
background:#111;
border:1px solid #222 !important;
font-size:11px;
color:#ddd;
}
.auto_ta .person /*已選擇的噗友底色*/
{
background:#000 !important;
color:#FFF !important;
}

/*++++++++++++++++++++各區設定++++++++++++++++++++*/

/*+頁首頁尾--------------------------------------------------*/

/*去除小圖底線***/
#top_bar .on img {border:none;}

/*標題***/
#page_title
{
color:#fff;
font-size:15px;
}

/*通知數字***/
#alert_beacon
{
font-size:11px;
color:#fff;
margin:0 2px;
font-weight:bold; /*粗體*/
}

/*編輯文字***/
#top_bar .content a#edit_link
{
font-size:10px;
color:#aabbcc !important;
background:none !important;
}
#top_bar .content a:hover#edit_link
{
background:none !important;
color:#fff !important;
}

/*頁首文字***/
#top_bar, #top_bar a, #top_login, #top_login a
{
color:#aabbcc !important;
font-size:11px;
font-weight:normal !important;
}
#top_bar a:hover, #top_login a:hover
{
color:#fff !important;
border:0 !important;
text-decoration:none !important;
}

/*頁尾文字***/
#footer, #footer a
{
background:none !important;
color:#aabbcc !important;
font-size:11px;
border:0 !important;
text-decoration:none !important;
font-weight:normal !important;
margin-top:0px;
}
#footer a:hover
{
color:#fff !important;
border:0 !important;
text-decoration:none !important;
font-weight:normal !important;
}

/*語言選單***/
#languge_selector
{
color:#aabbcc;
font-size:11px;
font-weight:normal !important;
}
#languge_selector form select /*下拉表格欄位*/
{
background:#888899 !important;
border:0px solid #ff5566 !important;
color:#fff !important;
}
#languge_selector form select option /*展開後的表格*/
{
background:#444455 !important;
border:0px solid #eeeedd !important;
color:#ccc !important;
}

/*+時間顯示--------------------------------------------------*/

/*日軸***/
.day_bg .div_inner
{
background:#556688;
border:0 !important;
width:12px;
height:4px;
}

/*日期文字*/
.day_start .bottom_start
{
color:#556688 !important;
font-size:8px !important;
margin-top:-6px;
margin-left:12px;
text-decoration:none !important;
font-weight:normal !important;
}

/*時軸***/
#bottom_line /*底*/
{
background:none !important;
border:0 !important;
}

.bottom_start , .bottom_end /*字*/
{
color:#aabbcc;
font-size: 10px !important;
}

/*每則噗的對應時間:線上***/
#time_show {padding:0; margin:0;}
#time_show span, .day, .morning, .evening, .night
{
background:#556688 !important;
border:1px solid #556688 !important;
margin:-5px;
padding:2px 4px !important;
color:#fff;
font-size:10px !important;
-moz-border-radius:5px 5px 5px 5px;
-webkit-border-top-right-radius:5px;
-webkit-border-top-left-radius:5px;
-webkit-border-bottom-right-radius:5px;
-webkit-border-bottom-left-radius:5px;
}

/*+所有的Plurk 我的Plurk--------------------------------------------------*/
#filter_tab a.off_tab /*未選*/
{
background:none !important;
border:0px solid #666655 !important;
color:#fff !important;
font-size:11px !important;
}
#filter_tab a.filter_selected /*正選*/
{
background:#444455 !important;
border:1px solid #444455 !important;
color:#fff !important;
font-size:11px !important;
-moz-border-radius:5px 5px 5px 5px;
-webkit-border-top-right-radius:5px;
-webkit-border-top-left-radius:5px;
-webkit-border-bottom-right-radius:5px;
-webkit-border-bottom-left-radius:5px;
}
#filter_tab a.off_tab:hover
{
color:#aabbcc !important;
}
#filter_tab a.filter_selected:hover
{
color:#111 !important;
}

/*+更新通知 音樂播放器--------------------------------------------------*/
#updater, #music_player
{
background:#444455 !important;
border:1px solid #444455 !important;
color:#fff;
font-size:12px !important;
font-weight:normal !important;
-moz-border-radius:5px 5px 5px 5px;
-webkit-border-top-right-radius:5px;
-webkit-border-top-left-radius:5px;
-webkit-border-bottom-right-radius:5px;
-webkit-border-bottom-left-radius:5px;
margin-top:25px;
}
#updater .text /*則數*/
{
color:#fff ;
font-size:12px !important;
}
#updater a, #music_player a /*更新 檢視*/
{
color:#994444 !important;
font-size:12px !important;
padding:2px;
font-weight:normal !important;
}
#updater a:hover, #music_player a:hover /*滑鼠移至效果*/
{
color:#aabbcc !important;
}

/*更換 更新通知音效 按鈕: 彩色 ***/
.cmp_sound_off
{
background:transparent url(http://i614.photobucket.com/albums/tt230/m66660000/_ic/white/volume_mute_12x9.png) 0 no-repeat;
width:16px;font-size:1px;height:16px;
background-position: 40% 40%; /*x軸40% y軸40%的地方固定*/
}
.cmp_sound_on
{
background:transparent url(http://i614.photobucket.com/albums/tt230/m66660000/_ic/white/volume_12x9.png) 0 no-repeat;
width:16px;font-size:1px;height:16px;
background-position: 40% 40%; /*x軸40% y軸40%的地方固定*/
}

/*+時間軸主題---------------------------------------------------*/

/*這條時間軸是空白的 檢視所有的噗***/
#empty_timeline_bg {color:#fff;text-transform: normal;font-size:0px; }
#empty_timeline_fg {color:#ccc;}
#empty_timeline_fg a {color:#fff;}
#empty_timeline_fg a:hover {color:#ccc;text-transform: normal;}

/*更換 往前往後 按鈕: 彩色***/
.cmp_arrow_right
{
background: url(http://i614.photobucket.com/albums/tt230/m66660000/_ic/gray_light/arrow_right_alt1_32x32.png);
width:32px;height:32px;
margin:0;
}
.cmp_arrow_left
{
background: url(http://i614.photobucket.com/albums/tt230/m66660000/_ic/gray_light/arrow_left_alt1_32x32.png);
width:32px;height:32px;
margin:0;
}
.cmp_back_to_today
{
background: url(http://i614.photobucket.com/albums/tt230/m66660000/_ic/gray_light/first_16x16.png);
width:16px;height:16px;
margin-left:10px;
margin-top:10px;
}

/*更換 loading圖***/
.cmp_loading {width:0px;height:0px;} /*主畫面*/
#div_loading .cnt
{
background:transparent url(http://statics.plurk.com/7f5c4282d2e9accfdae99cc6abb6c9bb.gif) no-repeat scroll center !important;
margin-top:140px;
}
.loading img {width:0px;height:0px;} /*每則噗*/
.loading
{
background: url(http://statics.plurk.com/7f5c4282d2e9accfdae99cc6abb6c9bb.gif) no-repeat scroll center top !important;
margin-top:30px;
}

/*+發噗區主題---------------------------------------------------*/
#main_poster
{
width:95%;
margin:0 auto;
}

/*使用者名稱***/
#main_poster .qual_holder {color:#fff;font-size:21px !important;}


/*語助詞***/
.qualifier, .m_qualifier, .r_qualifier /*所有*/
{
border:0 !important;
-khtml-border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
.qualifier {font-size:12px !important;} /*浪上*/

/*選單滑鼠移至效果*/
.qual_menu .on
{
background:#444455 !important;
color:#fff !important;
}

/*尚餘字數***/
.char_updater {color:#fff !important;} /*尚餘字數*/
.char_highlight {color:#fff !important;background:none !important;} /*超過字數*/

/*每日照片文字***/
#pane_daily_photo a {font-size:15px!important;color:#ddd !important;}
#pane_daily_photo a:hover {color:#111 !important;}

/*搜尋區文字***/
#pane_search {color:#ddd !important;}
#pane_search a {color:#ddd !important;}
#pane_search a:hover {color:#111 !important;}

/*搜尋趨勢標題***/
.hot_searches a {color:#ddd!important;}
.hot_searches a:hover {color:#111 !important;}

/*分享搜尋結果***/
.share_search b {color:#ddd!important;} /*標題*/
input#share_link
{
background:none !important;
color:#ddd !important;
border-color:#ddd !important;
}

/*更改 搜尋面板按鈕***/
input.orange-but
{
background:#666655 !important;
border:0 !important;
color:#ddd !important;
text-shadow:0px 0px 0px #ccc !important; /*陰影*/
-moz-box-shadow:0 0px 0 #000 !important;
-webkit-box-shadow:0 0px 0 #000 !important;
box-shadow:0 0px 0 #000 !important;
cursor:pointer;
font-size:13px;
padding:2px 4px;
vertical-align:middle;
width:auto;
}

/*表情選單列表***/
#emoticons_show /*圖片背景*/
{
background:#fff;
border-right:1px solid #fff;
border-bottom:1px solid #fff;
}
#emoticon_selecter /*選單背景*/
{
text-align:center;
position:absolute;
background:#eee !important;
border:1px solid #eee !important;
width:500px !important;
overflow:no;
-khtml-border-radius:5px !important;
-moz-border-radius: 5px !important;
-webkit-border-radius: 5px !important;
}
#emoticon_selecter img {border:1px solid #fff !important; }
#emoticon_selecter a:hover img {border:1px solid #ccc !important;}
#emoticons_tabs ul li a, /*項目 所有*/
#emoticons_tabs ul li
{
background:#eee !important;
color:#333 !important;
font-size:12px;
font-weight: regular;
text-transform:normal;
margin-left:0px;
border:0!important;
padding:3px 5px;
}
#emoticons_tabs ul li.current /*項目 正選*/
{
background:#eee !important;
border:0;
border-bottom:1px solid #ccc !important;
font-weight:bold;
}
#emoticons_show .red_link /*額外 連結*/
{
background:#ccc !important;
color:#000 !important;
}

/*+主控台主題---------------------------------------------------*/
#plurk-dashboard
{
font-size: 11px;
line-height:1.8em;
}
#plurk-dashboard a,
#plurk-dashboard a:link,
#plurk-dashboard a:visited,
#plurk-dashboard a:active
{
color:#aabbcc !important;
font-weight:normal !important;
text-decoration:none !important;
}
#plurk-dashboard a:hover
{
color:#fff !important;
font-weight:normal !important;
text-decoration:underline !important;
}

/*個人圖像***/
#profile_pic {width:60px;border:2px solid #fff !important;}
#profile_pic:hover {width:auto;}

/*個人資料***/
#full_name /*姓名*/
{
color:#111 !important;
font-size:14px !important;
background:none !important;
-khtml-border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
padding:4px;
}
p#about_me,
p#relationship_container,
#dash-profile,
#span_years,
#m_or_f,
#location
{
color:#bbbbcc !important;
}
#dash-additional-info a /*描述 連結*/
{
border:0px solid #aaaaaa !important;
color:#aabbcc !important;
padding:2px;
line-height:2em;
}
#dash-additional-info a:hover /*描述 滑鼠移過效果*/
{
background:#556688 !important;
color:#fff !important;
}

/*統計 朋友 粉絲***/
#dash-stats, #dash-friends , #dash-fans,
#dash-friends-pics, #dash-fans-pics
{
text-align:center;
font-size:11px !important;
color:#aabbcc !important;
}

#dash-stats h2, #dash-fans h2, #dash-friends h2 /*標題*/
{
font-size:12px !important;
color:#aabbcc !important;
font-size:13px !important;
background:none !important;
border:0px solid #111 !important;
padding:4px;
-khtml-border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}

#fan_holder .friend_holder /*粉絲區連結*/
{
color:#ccc !important;
}

/*統計資料***/
#dash-stats table {margin-top:0;}
#dash-stats table,
#dash-stats, /*項目*/
#dash-stats table td /*數值*/
{
color:#ddd !important;
font-size:11px !important;
}

/*卡馬***/
#karma {color:#fff;font-size:26px;}
.karma_hover {color:#aabbcc;font-size:22px;}
.karma_arrow {filter:alpha(opacity=0); -moz-opacity:0; opacity:0; zoom:1;}
.cmp_karma_up,.cmp_karma_down
{
background:transparent url(/static/icons/icons_png.png) 0 -28px no-repeat;
width:0px;
height:0px;
margin-top: 0px;
}
.link_arrow,.cmp_points-arrow
{
height:0 !important;
font-size:0 !important;
position:absolute;
opacity:0 !important;
filter:alpha(opacity=0) !important;
zoom=1; zoom:1;
}
.cmp_karma_up {filter:alpha(opacity=0)!important; opacity:0!important; zoom:1;}
.cmp_karma_down {filter:alpha(opacity=0)!important; opacity:0!important; zoom:1;}
a.link_arrow {filter:alpha(opacity=0)!important; opacity:0!important; zoom:1;}
a.link_arrow line_badges {filter:alpha(opacity=0)!important; opacity:0!important; zoom:1;}

/*更改 小徽章排列方式***/
.award_bar /*緊密排排站*/
{
width:200px !important;
}

/*小徽章透明度變化***/
.award_bar img {filter:alpha(opacity=30) !important;opacity:0.3 !important; zoom:1;}
.award_bar img:hover {filter:alpha(opacity=100) !important;opacity:1 !important; zoom:1;}

/*朋友粉絲圖像***/
.user_link img {filter:alpha(opacity=0) !important;opacity:0 !important; zoom:1;}
.user_link img:hover {filter:alpha(opacity=100)!important;opacity:1!important; zoom:1;}
.user_link {background:# !important;}
.friend_holder table {margin-top:0px;margin-left:auto;margin-right:auto;}
.friend_holder td {padding:2px 3px 2px;}
.friend_holder .user_link
{
height:33px!important;width:33px!important;
border:1px dotted #aabbcc !important;
}
.friend_holder img {width:33px;height:33px;}

/*更改 朋友粉絲與發送私密噗按鈕***/
.friend_man.private_plurk, /*發送私密噗*/
.friend_man.add_friend, /*加入朋友*/
.friend_man.remove, /*取消朋友*/
.friend_man.pending, /*取消追蹤該噗*/
.friend_man.add_follow /*追蹤粉絲*/
{
background:none !important;
border:1px solid #aabbcc !important;
-khtml-border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
.friend_man.block /*封鎖使用者*/
{
background:none !important;
background: url(http://i614.photobucket.com/albums/tt230/m66660000/_ic/gray_dark/x_alt_16x16.png) no-repeat scroll 100% 1px !important;
border:0 !important;
}
#block_user a.block {color:#444 !important; }
#block_user a.block:hover
{
background: url(http://i614.photobucket.com/albums/tt230/m66660000/_ic/red/x_alt_16x16.png) no-repeat scroll 100% 1px !important;
color:#ee3333 !important;
}
#block_user a.block {padding:12px 18px 0 0 ;}

/*隱藏 朋友搜尋,入門說明,邀請朋友,分享連結,社交小圖示***/
#dash-friends p, #dash-friends form,
div #tw_help,
div a#dashboard-invite,
div #sharePlurk,
.dash-icon
{
filter:alpha(opacity=0) !important;
-moz-opacity:0 !important;
opacity:0 !important;
height:0 !important;
width:0 !important;
overflow:hidden;
zoom:1;
}

/*++++++++++++++++++++每一則噗++++++++++++++++++++*/
/*新回應的底色 動態*/
.plurk_box td .shade_6, td .shade_6 {background-color:#fff !important;}
.plurk_box td .shade_5, td .shade_5 {background-color:#fff !important;}
.plurk_box td .shade_4, td .shade_4 {background-color:#fff !important;}
.plurk_box td .shade_3, td .shade_3 {background-color:#fff !important;}
.plurk_box td .shade_2, td .shade_2 {background-color:#fff !important;}
.plurk_box td .shade_1, td .shade_1 {background-color:#fff !important;}

/*隱藏已經消音的噗***/
.muted
{
filter:alpha(opacity=20);opacity:0.2;
zoom:1;
}

/*+浪上的噗:未打開前---------------------------------------------------*/
.plurk_cnt
{
font-size:13px;
line-height:18px;
letter-spacing:0.04em;
padding:3px;
-khtml-border-radius: 4px 4px 4px 4px; /*圓角*/
-moz-border-radius: 4px 4px 4px 4px;
-webkit-border-top-right-radius:4px;
-webkit-border-top-left-radius:4px;
-webkit-border-bottom-right-radius:4px;
-webkit-border-bottom-left-radius:4px;
border-top:1px solid #aabbcc; /*框線*/
border-left:1px solid #aabbcc;
border-right:1px solid #aabbcc;
border-bottom:1px solid #aabbcc;
}

/*噗整體底色***/
#timeline_holder .plurk_cnt,
.plurk_cnt,
.plurk_box .list,
.list .plurk_cnt,
.list .plurk_cnt tr,
.plurk_box .mini_form,
td.td_cnt texture,
textarea#input_small
{
background:#fff !important;
}

/*噗文字***/
.td_cnt .text_holder,
#timeline_holder table td,
#timeline_holder .plurk_cnt
{
color:#111 !important;
}

/*刪除編輯消音取消***/
.manager,
.manager a,
.manager .action,
.manager .cancel,
.manager .delete,
.unmute,
.mute
{
font-size:10px !important;
color:#556688 !important;
}

/*+浪上的噗:影音圖片--------------------------------------------------*/
.youtube img,.pictureservices img {border:none;}
.youtube:hover img,.pictureservices:hover img {border:1px solid #556688;}
.video:hover img,.pictureservices:hover img {border:1px solid #556688;}

/*+浪上的噗:回應數--------------------------------------------------*/
.td_response_count {padding-top:3px;} /*對齊*/
.response_count
{
background:#556688;
border:none !important;
color:#111 !important;
-moz-border-radius: 5px 5px 5px 5px;
-webkit-border-top-right-radius: 5px;
-webkit-border-bottom-right-radius: 5px;
-webkit-border-bottom-left-radius: 5px;
-webkit-border-top-left-radius: 5px;
padding-left: 5px;
padding-right: 5px;
padding-bottom: 4px;
padding-top: 3px;
margin-top: 5px;
margin-left: 0px;
}
.new .response_count /*新回應*/
{
background:#ee3333 !important;
border:none !important;
color:#111 !important;
}
.dots .inner /*中間的...*/
{
background:none;
border:none;
height:0;
width:0;
padding:0;
font-size:0px;
}

/*+浪上的噗:噗友代表圖--------------------------------------------------*/
.td_img div /*跟噗的間距*/
{
margin-right:0px;
margin-top:2px;
}
.p_img /*圖框*/
{
border:1px dotted #ccc;
background:#5577cc !important;
padding:2px;
border-bottom-color:#aabbcc;
border-right-color:#aabbcc;
}

/*浪上的噗透明度變化***/
#timeline_cnt {filter:alpha(opacity=100) !important;opacity:1 !important; zoom:1;}
#timeline_cnt:hover {filter:alpha(opacity=70) !important;opacity:0.7 !important; zoom:1;}

#timeline_holder .plurk_cnt
{
-moz-box-shadow: 0px 0px 4px #888899; /*陰影*/
-webkit-box-shadow: 0px 0px 4px #888899;
box-shadow: 0px 0px 4px #888899;
}

/*+浪上的噗:打開後--------------------------------------------------*/

/*回應列表***/
.list table /*寬度*/
{
width:98% !important;
margin-top:2px;
}
.plurk_box .list {min-height:318px !important; } /*高度*/

.list .plurk_cnt tr /*分隔線*/
{
border-bottom:1px solid #bbbbcc;
line-height:150%;
}

/*回應列表框線***/
.plurk_box .list
{
border-top: 0px solid #ccc; /*框線*/
border-left: 0px solid #ccc;
border-right: 1px solid #aabbcc;
border-bottom: 0px solid #ccc;
}
.plurk_box .mini_form
{
background:#fff !important; /*底色*/
border-top: 0px solid #ccc; /*框線*/
border-left: 0px solid #ccc;
border-right: 1px solid #aabbcc;
border-bottom: 0px solid #555 !important;
}
.info_box
{
background:#5577cc !important; /*底色*/
border-top: 0px solid #ccc; /*框線*/
border-left: 0px solid #ccc;
border-right: 1px solid #aabbcc;
border-bottom: 0px solid #444 !important;
-moz-border-radius:0px 0px 5px 5px;
-khtml-border-radius:0px 0px 5px 5px;
-webkit-border-radius:0px 0px 5px 5px;
}

/*回應列表標題***/
.plurk_box .caption
{
background:#5577cc; /*底色*/
color:#fff !important;
font-size:10px !important;
letter-spacing:0.08em;
text-align:right !important;
border-top: 0px solid #ccc; /*框線*/
border-left: 0px solid #ccc;
border-right: 1px solid #aabbcc;
border-bottom: 0px solid #aaa;
}

/*下方欄位文字***/
.mini_form .qual_holder {color:#111 !important;} /*使用者名稱*/
.mini_form .char_updater {color:#333 !important;} /*尚餘字數*/
.info_box {color:#fff !important;} /*只有發表者的...可回應*/

div.favorite_count {color:#fff !important;} /*喜愛的人數*/
div.limited_box {color:#aabbcc !important;} /*私密的噗給...*/

/*尚無回應 來搶第一個吧 : )***/
.list .empty
{
color:#556688 !important;
}

/*原噗者的回應***/
.list .highlight_owner .plurk_cnt tr /*背景色:整列*/
{
background:#eee !important;
}

/*+回應時間標示--------------------------------------------------*/
div.response_time .holder
{
background:#fff !important;
color:#333 !important;
font-size:10px !important;
letter-spacing:0.06em;
-khtml-border-radius: 4px 4px 4px 4px; /*圓角*/
-moz-border-radius: 4px 4px 4px 4px;
-webkit-border-top-right-radius:4px;
-webkit-border-top-left-radius:4px;
-webkit-border-bottom-right-radius:4px;
-webkit-border-bottom-left-radius:4px;
}
.response_time.plurk_cnt {padding:0 !important;}

/*++++++++++++++++++++單噗頁面++++++++++++++++++++++*/

/*+浪上的噗:主噗文--------------------------------------------------*/
div.bigplurk h1.content .plurk_content {color:#111 !important;} /*文字內容*/

/*噗內容***/
div.contentwrapper h1.content
{
background:#fff !important;
color:#111 !important;
border-top: 1px solid #aabbcc !important; /*框線*/
border-left: 1px solid #aabbcc !important;
border-right: 1px solid #aabbcc !important;
border-bottom: 0px solid #aabbcc !important;
-moz-border-radius:4px 4px 0px 0px;
-webkit-border-radius:4px 4px 0px 0px;
-khtml-border-radius:4px 4px 0px 0px;
border-radius:4px;
}
div.time
{
background:#fff !important;
color:#111 !important;
border-top: 0px solid #aabbcc !important; /*框線*/
border-left: 1px solid #aabbcc !important;
border-right: 1px solid #aabbcc !important;
border-bottom: 1px solid #aabbcc !important;
-moz-border-radius:0px 0px 4px 4px;
-webkit-border-radius:0px 0px 4px 4px;
-khtml-border-radius: 0px 0px 4px 4px;
border-radius:4px;
}

/*噗主代表圖***/
img.bubble_edge {filter:alpha(opacity=0)!important;opacity:0!important; zoom:1;} /*箭頭*/
div.user img
{
padding:0px;
background:none !important;
border:0 !important;
}

/*+上一則 下一則訊息--------------------------------------------------*/
#prev_plurk, #next_plurk
{
background:#fff !important;
color:#111 !important;
font-size:13px;
line-height: 18px;
letter-spacing:0.04em;
padding:3px;
-khtml-border-radius:4px; /*圓角*/
-moz-border-radius:4px;
-webkit-border-top-right-radius:4px;
-webkit-border-top-left-radius:4px;
-webkit-border-bottom-right-radius:4px;
-webkit-border-bottom-left-radius:4px;
border-top:1px solid #aabbcc; /*框線*/
border-left:1px solid #aabbcc;
border-right:1px solid #aabbcc;
border-bottom:1px solid #aabbcc;
}

/*+回應列表--------------------------------------------------*/
#plurk_responses h2 {color:#666;font-size:18px;} /*標題*/
div #plurk_responses h2 a {color:#555 !important;font-size:18px;}
div #plurk_responses h2 a:hover {color:#666 !important;font-size:18px;}
.stbuttontext {color:#777 !important;} /*ShareThis連結*/
.stbuttontext:hover {color:#ddd !important;}

/*回應內容***/
#plurk_responses a {color:#111 !important;}
.message
{
background:#fff !important;
color:#111 !important;
font-size:13px;
line-height: 18px;
letter-spacing:0.04em;
padding:3px;
-khtml-border-radius:4px; /*圓角*/
-moz-border-radius:4px;
-webkit-border-top-right-radius:4px;
-webkit-border-top-left-radius:4px;
-webkit-border-bottom-right-radius:4px;
-webkit-border-bottom-left-radius:4px;
border-top:1px solid #aabbcc; /*框線*/
border-left:1px solid #aabbcc;
border-right:1px solid #aabbcc !important;
border-bottom:1px solid #aabbcc !important;
}

/*噗友代表圖***/
img.avatar
{
border:0 !important;
background:# !important;
border:0px double # !important;
}

/*每則噗時間***/
ul.responses li:hover span.time {color:#555;text-transform: normal;}

/*+輸入訊息區--------------------------------------------------*/
#reply #reply_box
{
background:#556688 !important;
border:0 !important;
}
div#reply_box_holder .plurkaction {border:0 !important;}

/*使用者名稱***/
#reply_box_holder .qual_holder {color:#fff !important;}

/*登入或註冊以回應***/
div #not_logged_in h2 {color:#999 !important;background:none !important;}
div #not_logged_in h2 a {background:none !important;color:#888 !important;}
div #not_logged_in h2 a:hover {color:#ccc !important;}

/*++++++++++++++++++++視窗設定++++++++++++++++++++++*/

/*+浪上噗友小視窗--------------------------------------------------*/
.AmiMenu.info_menu,
.AmiMenu.info_menu td.on,
.AmiMenu.info_menu .user_info.on,
.AmiMenu.info_menu .separator
{
background:#222 !important;
border:0 !important;
}
.AmiMenu.info_menu .block /*封鎖使用者*/
{
background:#ee3333 !important;
border:0 !important;
}

/*下拉視窗箭頭***/
.cmp_tooltips-down
{
background: url(http://i614.photobucket.com/albums/tt230/m66660000/plurk/up_down/black_down.png);
}
.cmp_tooltips-up
{
background: url(http://i614.photobucket.com/albums/tt230/m66660000/plurk/up_down/black_up.png);
}

/*+說明小視窗--------------------------------------------------*/
.tooltip_cnt
{
background:#444455;
color: #ccc !important;
border-top: 1px solid #333 !important; /*框線*/
border-left: 1px solid #333 !important;
border-right: 1px solid #444 !important;
border-bottom: 1px solid #444 !important;
}
.tooltip_cnt img {border:0 !important;} /*噗友代表圖*/
.AmiTT_main {background:none !important; border:0 !important;} /*背景箭頭*/

/*+功能視窗--------------------------------------------------*/
.GB_Window {border:1px solid #ccc !important;}
.GB_Window .content {border:1px solid #ccc !important;border-top:0 !important;}
.GB_Window GB_Gallery .content {border:0 !important;}
.content .iframe_holder {border:0px solid #ccc !important;}
.GB_Window .header
{
background:none !important;
border:0px solid #ccc !important;
color:#ddd;
border-bottom:none!important;
}
.GB_Window .header td.caption
{
color:#ddd;
background:#444455 !important;
}
.GB_Window .close {background:#444455 !important;}

/*隱藏影片在背景播放***/
div .video_holder a {color: # !important;background:# !important;}
div .hide_window a {color: # !important;} /*直接連結...*/
div .direct-l yt a {color:# !important;background:none !important;}

/*+註冊使用BAR--------------------------------------------------*/
#validate_email,
#sign_up_small,
#registerToday,
.plurk_box .login_to_see a,
.red_link
{
background:none !important;
color:#ccc !important;
border:0;
}
.plurk_box .login_to_see
{
background:#fff !important;
border-right:1px solid #aabbcc !important;
border-bottom:0px solid #444 !important;
}
#top_login a#sign_up
{
background:none !important;
color:#ccc !important;
border:0 !important;
}

/*++++++++++++++++++++其他設定++++++++++++++++++++*/
/*更換 微笑表情選圖***/
.smily_holder img /*隱藏笑臉符號*/
{
filter:alpha(opacity=0) !important;
-moz-opacity:0 !important;
opacity:0 !important;
zoom:1;
}
.smily_holder /*放上替代圖片*/
{
background:url(http://i614.photobucket.com/albums/tt230/m66660000/_ic/gray_light/chat_alt_fill_24x24.png) center center no-repeat; /*填滿*/
padding-right:24px;
padding-left:0 !important;
margin:0 !important;
width:24px !important;
}

/*隱藏 語助詞旁的箭頭符號***/
.dd_img img[src="http://statics.plurk.com/123918e3c72ef7b92780fffc44085dfb.gif"]
{
background-position:left top;
background-repeat:no-repeat;
overflow:hidden;
height:0px;
width:0px;
}

/*隱藏 找噗友聊天 按鈕***/
#chat_button
{
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity:0;
z-index:-1;
height:0 !important;
width:0 !important;
overflow:hidden;
}


/*噗輸入區透明度變化***/
div#plurk_form {filter:alpha(opacity=0) !important;opacity:0 !important;zoom:1;}
div#plurk_form:hover {filter:alpha(opacity=100) !important;opacity:1 !important;zoom:1;}


/*------------------------------------------------------------------------
Date: 2010-11-5
Design by Be Myself Inc. M6
------------------------------------------------------------------------*/
/***僅開放個人套用做為噗版,商業性質及其他利用方式請勿使用,謝謝****/