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
/*置頂噗突顯字顏色*/
.plurk.pinned b { /*粗體*/ color:#4bdaed; }
.plurk.pinned u { /*底線*/ color:#83e6ff; }
.plurk.pinned i { /*斜體*/ color:#d1d5ff; }
.plurk.pinned strike { /*刪除線*/ color:#dae3ed; }
/*單隻噗寶*/
#dynamic_logo {
/*這行不用動*/ display:block; position:absolute;
/*上下位置*/ top:10px; /*可改bottom*/
/*左右位置*/ right:10px; /*可改left*/
/*大小*/ width:auto; /*auto改想要的大小,可改height,不須調大小的話可以刪除這行*/
/*圖片*/ content:url(https://images.plurk.com/1T7ZEnDGEqYP4XIUfGAAHs.png);
}
/*置頂圖釘替換*/
.pinned_plurk_icon {
font-size: 0px;/*把「圖釘」圖樣大小設為0=不見*/
background:url(https://images.plurk.com/3W0REyd8q3rv9UyJflsD8m.gif) no-repeat ;
width: 100px; /*新圖片寬度*/
height: 100px; /*新圖片高度*/
position: absolute; /*絕對定位*/
top: 35px;
left: 20px;
}
/*人物圖*/
.timeline-cnt .plurk_cnt::after {
/*這些不動*/ position:absolute;
/*圖片*/ content:url(https://images.plurk.com/43j7mhQycAyGkNh01pFCg3.gif);
/*位置*/ right:10px;
/*位置*/ top:-42px;
}

/*排版*/
.timeline-cnt { margin-top:30px; }
.timeline-cnt .plurk_cnt { padding:5px 30px 5px 5px; border-radius:13px; }
.timeline-cnt .tr_cnt { margin:20px; display:inline; }
.td_img { position:absolute; left:0px; margin:5px; border-radius:50%; overflow:hidden; z-index:1; }

/*氣泡*/
.td_response_count {
/*這些不動*/ position:relative; line-height:8px; padding:5px 7px; z-index:1; display:block;
/*這些不動*/ border-radius:30px; font-size:10px; width:min-content; max-height:20px;
/*位置*/ bottom:55px;
/*位置*/ right:30px;
/*顏色*/ background:#0f0f44;
/*字色*/ color:#f7fdff;
/*字體*/ font-family:微軟正黑體;
}

.td_response_count * { background:inherit!important; }
.td_response_count::after { content:""; position:absolute; left:9px; bottom:-5px; background:inherit; clip-path:polygon(0 0, 100% 0, 0 100%); height:10px; width:10px; }
[data-respcount="0"] .td_response_count { display:none; }

/*==================================*/
/* 下面可有可無 */
/* 有新回應(原本是紅色)時的改變 */
/*==================================*/

/*新回應人物圖*/
.timeline-cnt .new .plurk_cnt::after {
/*圖片*/ content:url(https://images.plurk.com/7gvEjE52yEgjVxCMpgQvZD.gif);
}

/*新回應氣泡*/
.new .td_response_count {
/*顏色*/ background:#30acff;
/*字色*/ color:#f7fdff;
}
/*自介區塊噗寶*/
#dash-additional-info:after {
/*這裡勿動*/ position: absolute;
/*圖片*/ content: url(https://images.plurk.com/s4DjCj9D7wWAgf8MCzymq.gif);
/*左右位置*/ right: 0px; /*right可改left*/
/*上下位置*/ bottom: 0px; /*bottom可改top*/
}
/*噗幣噗寶(無噗幣時不會出現)*/
#dash-profile .profile-icons .premium:before {
/*這裡勿動*/ position: absolute; line-height: 0; right: 100%; bottom: 0px;
/*圖片*/ content: url(https://images.plurk.com/MhfXOqAm5JrScQYEOwaqh.gif);
}
/*游標滑過顏色調整語法*/

.response_box .list .plurk_cnt:hover {
background-color: #375695; color: #f7fdff;
}

/*頭貼名片*/
#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(https://images.plurk.com/6nBvU2eO9kxn5pNph7A6oz.png);
background-size: cover;
transition:0.3s; /*漸變秒數可自行調整*/
}

#plurk-dashboard .dash-segment-profile #dash-profile img.profile-pic:hover
{ background: url(https://images.plurk.com/7k0k36xUcujVIrRgBcGhK6.png);
background-size: cover;
transition:0.3s; /*漸變秒數可自行調整*/
}

#plurk-dashboard .dash-segment-profile #dash-profile img.profile-pic:active
{ background: url(https://images.plurk.com/3pT24BWVsNLkIE7zueZfXR.png);
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;
}
/*自訂橫條背景色*/
' {}:not(*)/* { */,/* } */
#top_bar .bar-color {
background: rgba(0, 46, 140, 0.3); /*自行查找想要的RGB色碼 0.8是透明度*/
}
' {}
/* 連結文字 */
a.ex_link, a.ex_link.plink {
color:#0f0f44 !important; /*字顏色*/
text-decoration:none !important; /*不加底線*/
outline:0 !important; /*消除連結虛線框*/
}

/* 滑鼠移至連結文字效果 */
a.ex_link:hover, a.ex_link.plink:hover {
color:#30acff !important; /*字顏色*/
text-decoration:none !important; /*不加底線*/
}

/* 滑鼠移到轉噗那列 icon 的效果 (整列統一效果) */

.manager a:hover {
color: #83e6ff !important; /* icon 的顏色*/
background: none !important; /* icon 背景色 */
}

/* 噗浪產生的連結預覽其文字顏色 */
a.ex_link.meta {
color: #0f0f44 !important;
}

/* 承上,滑鼠移過去時的效果 */
a.ex_link.meta:hover {
color: #30acff !important;
}

/*時間軸上移*/
#bottom_line {
top: 15px;
bottom: auto;
}
.timeline-bg .block_bg .bottom_start {
top: 7px;
bottom: auto;
}
.timeline-cnt {
top: auto;
bottom: 0;
height: 90% !important; /*調整%數可更改距離*/
}
.timeline_control { /*所有訊息上移*/
top: 120px;
}
#timeline_control_holder { /*向下展開*/
bottom: auto;
top: 0;
}
#updater { /*未讀靠上對齊*/
bottom: auto;
top: 0;
margin-top: 6px;
}
#timeline_control_holder ul {/*排列反轉*/
display: flex;
flex-direction: column-reverse;
}

/*佈景*/

.plurk:not(:hover):not(.display) .manager {display: block !important; height: 0;}
.plurk:not(:hover):not(.display) .manager > a:before, .plurk:not(:hover):not(.display) .manager > a > span {visibility: hidden;}
.plurk:not(:hover):not(.display) .manager > a {padding: 0;}
.manager .like.like-on > span:before, .manager .like.like-on > span:after, .manager .replurk.replurk-on > span:before, .manager .replurk.replurk-on > span:after, .manager .mark-on:after, .manager .mark-on ~.option:after {
pointer-events: none;
content: "";
visibility: visible;
position: absolute;
top: 0;
}
.manager .mark-on:after {
width: var(--mark-width);
height: var(--mark-length);
background: var(--mark-color);
right: var(--mark-right);
z-index: var(--mark-layer);
}
.manager .mark-on ~.option:after {
border: var(--mark-color) calc(var(--mark-width) / 2) solid;
border-bottom-color: transparent;
right: var(--mark-right);
top: var(--mark-length);
z-index: var(--mark-layer);
}
.manager .like.like-on > span:after {
width: var(--like-width);
height: var(--like-length);
background: var(--like-color);
right: var(--like-right);
z-index: var(--like-layer);
}
.manager .like.like-on > span:before {
border: var(--like-color) calc(var(--like-width) / 2) solid;
border-bottom-color: transparent;
right: var(--like-right);
top: var(--like-length);
z-index: var(--like-layer);
}
.manager .replurk.replurk-on > span:after {
width: var(--replurk-width);
height: var(--replurk-length);
background: var(--replurk-color);
right: var(--replurk-right);
z-index: var(--replurk-layer);
}
.manager .replurk.replurk-on > span:before {
border: var(--replurk-color) calc(var(--replurk-width) / 2) solid;
border-bottom-color: transparent;
right: var(--replurk-right);
top: var(--replurk-length);
z-index: var(--replurk-layer);
}
/*
Tokyono-Sora v1.1.1
Design by Chiaki.C https://plurk.com/akira02
https://github.com/akira02/Tokyono-Sora/
*/

/* 整體控制 */

.block_cnt {
transition: 0s;
}

' {}:not(*) /* { */, /*
}*/
body {
overflow-y: auto;
font-family: "M 翔鶴黑體 TC", "PingFang TC", "LiHei Pro", "Heiti TC",
"Source Han Sans TC", "Noto Sans TC", "Hiragino Sans", "Century Gothic",
"Microsoft Jhenghei", "微軟正黑體", sans-serif !important;
}
:not(*) /* { */, /*
}*/
.text_holder {
line-height: 1.5em;
}
' {}

/*捲軸調整*/
' {}:not(*) /* { */, /*
}*/
::-webkit-scrollbar {
width: 5px;
}
:not(*) /* { */, /*
}*/
::-webkit-scrollbar-track {
-webkit-border-radius: 10px;
border-radius: 10px;
}
:not(*) /* { */, /*
}*/
::-webkit-scrollbar-thumb {
-webkit-border-radius: 4px;
border-radius: 4px;
background: #ccc;
}
' {}

/*頂端功能列模糊*/
' {}:not(*) /* { */, /*
}*/
#top_bar {
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
}
' {}

/*彈出視窗模糊*/
._lch_ ~ .pop-window .divplurk,
._lch_ ~ .pop-window .pop-window-view,
._lch_ ~ .pop-window .response_box,
._lch_ ~ .pop-window .mini_form,
._lch_ ~ .pop-window .img-holder {
background: none !important;
}

._lch_ ~ .pop-window .pop-window-view {
border-radius: 7px !important;
}
._lch_ ~ .pop-window .cbox_left {
background: black !important;
}
._lch_ ~ .pop-window .pop-window-content {
background: rgba(255, 255, 255, 0.7) !important;
backdrop-filter: saturate(180%) blur(20px);
-webkit-backdrop-filter: saturate(180%) blur(20px);
}
._lch_ ~ .pop-window .pop-window-view iframe {
background: rgba(255, 255, 255, 0.9) !important;
backdrop-filter: saturate(180%) blur(20px);
-webkit-backdrop-filter: saturate(180%) blur(20px);
}
/*彈出視窗輸入框圓角*/
._lch_ ~ .pop-window .plurkForm.mini-mode .input_holder,
._lch_ ~ .pop-window .mini_form .input_holder {
border-radius: 10px;
}
._lch_ ~ .pop-window .m_qualifier {
border-radius: 10px;}

/* 河道調整 */

#timeline_holder {
height: calc(100vh - 160px) !important;
background: none;
}
/*時間標籤*/
.bottom_start {
position: absolute;
height: 18px;
}
#bottom_line {
display: none !important;
}
/*通知器*/
#timeline_control_holder a {
border-radius: 25px;
}
.unread_generic {
border-radius: 12px;
background-color: #ff574d;
}
/*右下浮動發噗時間*/
#time_show {
top: auto !important;
right: 1%;
bottom: 5%;
left: auto !important;
padding: 10px !important;
background-color: rgba(0, 0, 0, 0.6) !important;
backdrop-filter: saturate(180%) blur(20px);
-webkit-backdrop-filter: saturate(180%) blur(20px);
}
#time_show span {
color: #fff !important;
font-size: 2em !important;
font-weight: bold;
}
/*右邊捲動箭頭*/
.browse_button {
z-index: 800;
}
/*調整噗浪獸位置*/
#dynamic_logo {
position: fixed;
bottom: 140px;
right: 20px;
}

/* 噗調整 */

/*噗本體*/
.cboxAnchor:not(.response) .plurk_cnt {
border-radius: 8px;
background: rgba(255, 255, 255, 0.8) !important;
backdrop-filter: saturate(180%) blur(20px);
-webkit-backdrop-filter: saturate(180%) blur(20px);
}
/*噗文寬度*/
.plurk.cboxAnchor:not(.response) {
max-width: 430px;
}
/*噗文邊界*/
.cboxAnchor:not(.response) .tr_cnt {
display: block;
margin: 7px;
max-width: 430px;
}
/*噗文暱稱*/
.cboxAnchor:not(.response) .td_qual {
display: inline-block;
position: relative;
top: 2px;
left: 35px;
}
.name {
font-size: 1.1em;
font-weight: 800;
text-shadow: #fff 0px 0px 1px, #fff 0px 0px 1px, #fff 0px 0px 1px,
#fff 0px 0px 1px, #fff 0px 0px 1px, #fff 0px 0px 1px;
}
/*動詞*/
.qualifier {
padding: 0 3px 0 3px;
}
/*拉寬噗文*/
.cboxAnchor:not(.response) .td_cnt {
display: inline-block;
margin-top: 35px;
}
.cboxAnchor:not(.response) .text_holder {
width: 100%;
}
/*選中的噗文*/
.cboxAnchor:not(.response).display .plurk_cnt {
min-width: 430px;
}
.cboxAnchor:not(.response).display .tr_cnt {
min-width: 430px;
}
.cboxAnchor:not(.response).display .text_holder {
margin-bottom: 15px;
}
.cboxAnchor:not(.response).display .manager {
margin-top: -15px;
}
/*展開噗文*/
.cboxAnchor:not(.response).plurk_box .plurk_cnt {
border-radius: 7px 7px 0 0;
}
.plurk_editor_form {
order: 4;
}
/*重設回應欄位背景*/
.response_box {
background: none !important;
border: none;
}

.plurk_box .mini_form {
background: none !important;
border: none;
}
#form_holder {
background: rgba(255, 255, 255, 0.8) !important;
backdrop-filter: saturate(180%) blur(20px);
-webkit-backdrop-filter: saturate(180%) blur(20px);
border-radius: 0 0 7px 7px;
}
.icons_holder .pif-emoticon:after {
display: none;
}
/*未讀噗邊框*/
.new .plurk_cnt {
box-shadow: 0px 0px 9px 0px rgba(0, 255, 255, 0.74);
}
/*避免噗文展開後被切掉*/
#timeline_cnt,
.block_cnt {
overflow-y: visible !important;
}
.div_inner {
height: auto !important;
position: absolute;
top: 0;
bottom: 0;
}

/*回覆框*/
.plurkForm.mini-mode .input_holder,
.mini_form .input_holder {
border-radius: 10px;
}
.plurkForm.mini-mode .icons_holder {
margin: 0;
}
.char_updater {
display: none;
}
.plurkForm.mini-mode.plurk_editor .input_holder {
width: 100%;
}
/*icon*/
.plurk_icon {
margin: -25px 0 0 18px;
}
.pinned_plurk_icon {
left: -10px;
}
.plurk_icon.coin {
margin-left: 15px;
}

/* 面板設定 */

/*重置背景*/
.dash-segment .segment-content {
background: none;
margin: 0;
}
#plurk-dashboard {
background: none;
border: none;
}

/*發文面板*/
.dash-group-form {
position: fixed !important;
bottom: 35px !important;
left: 50%;
transform: translate(-50%, 0);
width: calc(100vw - 150px) !important;
max-width: 950px !important;
border-radius: 30px;
box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.8);
background-color: rgba(255, 255, 255, 0.6);
backdrop-filter: saturate(180%) blur(20px);
-webkit-backdrop-filter: saturate(180%) blur(20px);
z-index: 900;
}
#plurk-dashboard .dash-group-form .segment-content {
min-height: 62px;
}
.dash-group-form:hover {
z-index: 1100;
}
.plurkForm {
display: flex;
align-items: flex-end;
margin: 0 0 5px 3px;
flex-wrap: wrap;
justify-content: flex-end;
}
.submit_img {
order: 3;
width: auto;
border-radius: 20px;
padding: 0 15px 0 15px;
line-height: 35px;
margin-right: 5px;
}
.input_holder {
order: 1;
flex-grow: 1;
border-radius: 20px;
padding-right: 10px;
min-width: 200px;
}
.icons_holder {
order: 2;
margin-left: 10px;
}
#main_poster .icons_holder {
min-width: 190px;
}
.m_qualifier {
border-radius: 15px;
padding: 3px 11px 4px 10px;
}

/*自介面板*/
.dash-group-left {
position: fixed !important;
top: 70px;
right: 0px;
color: white;
padding: 10px;
width: 350px !important;
background: none;
border-radius: 150px;
max-height: 115px;
transition: max-height 1s, transform 1s, background 0.5s,
border-radius 0.3s 1s;
overflow: hidden;
background-color: rgba(0, 0, 0, 0.6);
backdrop-filter: saturate(180%) blur(20px);
-webkit-backdrop-filter: saturate(180%) blur(20px);
transform: translate(230px, 0);
z-index: 900;
}
#dash-profile {
margin-left: 3px;
}
.dash-group-left:hover {
max-height: 100vh;
transform: translate(0);
border-radius: 7px;
transition: max-height 1s, transform 1s, background 0.5s, border-radius 0.3s;
}
#full_name,
.profile-info {
margin-left: 110px !important;
}
.dash-group-left #dash-additional-info {
width: 320px;
}
/*自介連結顏色*/
#plurk-dashboard #about_me a {
color: #f7fdff !important;
}
/*噗幣位置*/
#plurk-dashboard .profile-icons {
display: inline-block;
left: 67px;
bottom: 3px !important;
}
#plurk-dashboard .profile-info {
padding-top: 5px;
position: static !important;
}
/*大頭貼圓角*/
#profile_pic {
border-radius: 50% !important;
}
/*他人編輯你暱稱的欄位*/
#dash-profile .profile-info {
display: flex;
}
#plurk-dashboard .dash-segment-profile #dash-profile .profile-info .edit-alias,
#plurk-dashboard .dash-segment-profile #dash-profile .profile-info .remove-alias {
max-width: 0px;
transition: all .3s;
margin-right: 0px;
}
#plurk-dashboard .dash-segment-profile #dash-profile:hover .profile-info .edit-alias,
#plurk-dashboard .dash-segment-profile #dash-profile:hover .profile-info .remove-alias {
max-width: 10px;
display: block;
margin-right: 8px;
}
#dash-profile .profile-info #alias {
transition: all .5s;
}
#dash-profile .profile-info #alias[contenteditable="true"] {
color: black;
background-color: white;
padding: 0 8px;
min-width: 100px;
border-radius: 999px;
}

/*統計面板*/
.dash-group-right {
position: fixed !important;
top: 190px;
right: 0px;
color: white;
padding: 10px;
border-radius: 40px;
max-height: 60px;
width: 700px !important;
transition: max-height 1s, background 0s, transform 1s, border-radius 0.3s 1s;
overflow: hidden;
background-color: rgba(0, 0, 0, 0.6);
backdrop-filter: saturate(180%) blur(20px);
-webkit-backdrop-filter: saturate(180%) blur(20px);
transform: translate(540px, 0);
z-index: 900;
}
.dash-group-right:hover {
max-height: 100vh;
border-radius: 7px;
transition: max-height 1s, background 0s, transform 1s, border-radius 0.3s;
transform: translate(0);
}
.dash-group-left:hover + .dash-group-right {
background: none;
backdrop-filter: none;
-webkit-backdrop-filter: none;
transform: translate(540px, -50px);
pointer-events: none;
}
.dash-segment-stats .segment-content {
height: 100px;
}
#dash-stats-table {
position: absolute;
right: 0px;
width: 400px !important;
}
#dash-stats h2 {
display: none;
}
#plurk-dashboard .dash-segment #dash-stats table td {
color: white;
}
/*按鈕*/
#plurk-dashboard a.friend_man {
border-radius: 15px;
transition: background-color 0.6s ease, color 0.6s ease;
}

/* Karma值 */
.dash-stats-karma {
width: auto !important;
}
@font-face {
font-family: nixie;
src: url("https://chiaki.uk/assets/AkiNixieNumber-Regular.woff2")
format("woff2"),
url("https://chiaki.uk/assets/AkiNixieNumber-Regular.woff") format("woff");
}
@font-face {
font-family: nixie2;
src: url("https://chiaki.uk/assets/AkiNixieNumber-karma.woff2")
format("woff2"),
url("https://chiaki.uk/assets/AkiNixieNumber-karma.woff") format("woff");
}
.karma_hover {
display: flex;
margin: 0;
left: 7px;
text-indent: -300px;
pointer-events: none;
}
#karma_holder {
display: inline-block;
position: relative;
text-indent: 0px;
left: 0px;
}
#karma {
position: relative;
display: inline-block;
text-align: right;
font-family: nixie;
font-size: 35px;
width: 3.5em;
top: -10px;
left: -5px;
padding: 0.2em;
padding-bottom: 0.1em;
color: #00ffff;
text-shadow: 0px 0px 6px rgba(255, 65, 0, 0.7), 0px 0px 20px #8700ff,
0px 0px 10px rgb(118, 18, 3) !important;
transition: transform 1s, font-size 1s;
}
.dash-stats-karma .help {
display: none;
}
/*背景燈絲*/
#karma::after {
position: absolute;
top: 0.2em;
left: 0.2em;
opacity: 0.4;
color: #0000ff;
content: "$$$$$$";
}
.dash-stats-karma {
margin: 0 !important;
}
.dash-group-right:hover #karma {
transform: translate(20px, 20px);
font-size: 50px;
}

/* 底部設定 */

/*底部連結*/
#footer {
padding: 0;
position: fixed;
bottom: 0px;
right: 10px;
height: 30px;
width: auto;
}
#footer .copyright {
display: none;
}
/*隱藏河道雙向箭頭*/
.browse_button .cmp_arrow_right, .browse_button .cmp_arrow_left {opacity:0}
.browse_button .cmp_back_to_today {opacity:0}

/*河道上大頭貼改圓角*/

.p_img{border-bottom:none;}
.p_img img {border-radius: 6px;}

/* 取消圖片縮圖圓角 */
.plurk a.pictureservices{border-radius:0;}
/* 取消影片縮圖圓角 */
.plurk a.meta img{border-radius:0;}

/*噗文「底色」,色碼可調*/
#pinned_plurk .plurk_cnt {background: #0f0f44 !important;}

/*發文者「暱稱顏色」,色碼可調,調成與噗文相同則可視覺上隱藏暱稱(但滑鼠滑過去還是能點)*/
#pinned_plurk .td_qual a {color: #f7fdff !important;}

/*置頂噗 文字顏色*/
#pinned_plurk .plurk_cnt {color: #30acff;}

/**======== Create by Plurk CSS Generator ========**/
/**== https://hoshikata.github.io/PlurkCSSGenerator ==**/
/*發噗鈕*/
.submit_img_color {
background-color: #50aece;
}
/*發噗鈕:滑鼠移至*/
.submit_img_color:hover {
background-color: #5e83d9;
}
/*發噗區表符鈕*/
.dash-segment-post .icons_holder .pif-emoticon {
color: #b4cfe4;
opacity: 1;
transition: 0s;
}
/*發噗區表符鈕:滑鼠移至*/
.dash-segment-post .icons_holder .pif-emoticon:hover {
color: #e3cc35;
}
/*發噗區分享鈕*/
.dash-segment-post .icons_holder .pif-media {
color: rgba(180, 207, 228, 1);
}
/*發噗區分享鈕:滑鼠移至*/
.dash-segment-post .icons_holder .pif-media:hover {
color: #40a5f2;
}
/*發噗區同步鈕*/
.dash-segment-post .icons_holder .pif-sync {
color: #b4cfe4;
}
/*發噗區同步鈕:滑鼠移至*/
.dash-segment-post .icons_holder .pif-sync:hover {
color: #3cd376;
}
/*發噗區偷偷說鈕*/
.dash-segment-post .icons_holder .pif-anynomous {
color: #b4cfe4;
}
/*發噗區偷偷說鈕:滑鼠移至*/
.dash-segment-post .icons_holder .pif-anynomous:hover {
color: #d378f7;
}
/*發噗區私人鈕*/
.dash-segment-post .icons_holder .pif-privacy {
color: #b4cfe4;
}
/*發噗區私人鈕:滑鼠移至*/
.dash-segment-post .icons_holder .pif-privacy:hover {
color: #ffee80;
}
/*發噗區投票鈕*/
.dash-segment-post .icons_holder .pif-poll {
color: rgba(180, 207, 228, 0.8);
}
/*發噗區投票鈕:滑鼠移至*/
.dash-segment-post .icons_holder .pif-poll:hover {
color: #1424ff;
}
/*河道噗首字色*/
/*一般文字*/ #timeline_holder .plurk .text_holder { color:#434373; }
/*連結*/ #timeline_holder .plurk a.ex_link { color:#0f0f44; }
/*噗貼*/ #timeline_holder .plurk a.plurkpaste { color:#0f0f44; }
/*TAG*/ #timeline_holder .plurk .text_holder a.hashtag { color:#30acff; }
/*指上TAG*/ #timeline_holder .plurk .text_holder a.hashtag:hover {
/*背景色*/ background-color:#0f0f44;
/*文字色*/ color:#f7fdff;
}

/*河道噗內字色*/
/*一般文字*/ .list .plurk .text_holder { color:#30acff; }
/*連結*/ .list .plurk a.ex_link { color:#30acff; }
/*噗貼*/ .list .plurk a.plurkpaste { color:#30acff; }
/*TAG*/ .list .plurk .text_holder a.hashtag { color:#0f0f44; }
/*指上TAG*/ .list .plurk .text_holder a.hashtag:hover {
/*背景色*/ background-color:#30acff;
/*文字色*/ color:#0f0f44;
}

/*點開的噗首字色*/
/*一般文字*/ ._lch_ ~ .pop-window .divplurk .text_holder { color:#375695; }
/*連結*/ ._lch_ ~ .pop-window .divplurk a.ex_link { color:#375695; }
/*噗貼*/ ._lch_ ~ .pop-window .divplurk a.plurkpaste { color:#375695; }
/*TAG*/ ._lch_ ~ .pop-window .divplurk a.hashtag { color:#30acff; }
/*指上TAG*/ ._lch_ ~ .pop-window .divplurk a.hashtag:hover {
/*背景色*/ background-color:#375695;
/*文字色*/ color:#f7fdff;
}

/*點開的噗內字色*/
/*一般文字*/ ._lch_ ~ .pop-window .list .text_holder { color:#83e6ff; }
/*連結*/ ._lch_ ~ .pop-window .list a.ex_link { color:#434373; }
/*噗貼*/ ._lch_ ~ .pop-window .list a.plurkpaste { color:#v; }
/*TAG*/ ._lch_ ~ .pop-window .list a.hashtag { color:#0f0f44; }
/*指上TAG*/ ._lch_ ~ .pop-window .list a.hashtag:hover {
/*背景色*/ background-color:#83e6ff;
/*文字色*/ color:#375695;
}
/* ======== 噗串篩選:一般狀態 ======== */
#filter_tab a {
/* 不透明度 */ opacity: 1;
/* 底色 */ background: #ccdef2;
/* 字色 */ color: #002e8c;
}
#filter_tab a i { /* 圖示顏色 */ color: #30acff; }
#filter_tab a .unread_generic {
/* 數字底色 */ background: #0f0f44;
/* 數字字色 */ color: #83e6ff !important;
}

/* ======== 噗串篩選:一般狀態指上 ======== */
#filter_tab a:hover {
/* 底色 */ background: #0f0f44;
/* 字色 */ color: #f7fdff;
}
#filter_tab a:hover i { /* 圖示顏色 */ color: #66D; }
#filter_tab a:hover .unread_generic {
/* 數字底色 */ background: #338;
/* 數字字色 */ color: #99F !important;
}

/* ======== 噗串篩選:已選擇的篩選 ======== */
#filter_tab a.filter_selected {
/* 底色 */ background: #375695;
/* 字色 */ color: #f7fdff;
}
#filter_tab a.filter_selected i { /* 圖示顏色 */ color: #83e6ff; }
#filter_tab a.filter_selected .unread_generic {
/* 數字底色 */ background: #e2f9ff;
/* 數字字色 */ color: #002e8c !important;
}

/* ======== 噗串篩選:已選擇的篩選指上時 ======== */
#filter_tab a.filter_selected:hover {
/* 底色 */ background: #30acff;
/* 字色 */ color: #f7fdff;
}
#filter_tab a.filter_selected:hover i { /* 圖示顏色 */ color: #0f0f44; }
#filter_tab a.filter_selected:hover .unread_generic {
/* 數字底色 */ background: #0f0f44;
/* 數字字色 */ color: #f7fdff !important;
}

/* ======== 訊息更新:一般狀態 ======== */
#updater .item a {
/* 底色 */ background: #0f0f44;
/* 字色 */ color: #f7fdff;
}
#updater .item a i { /* 圖示顏色 */ color: #e2f9ff; }
#updater a .unread_generic {
/* 數字底色 */ background: #e2f9ff;
/* 數字字色 */ color: #30acff !important;
}

/* ======== 訊息更新:一般狀態指上時 ======== */
#updater .item a:hover {
/* 底色 */ background: #83e6ff;
/* 字色 */ color: #375695;
}
#updater .item a:hover i { /* 圖示顏色 */ color: #002e8c; }
#updater a:hover .unread_generic {
/* 數字底色 */ background: #002e8c;
/* 數字字色 */ color: #f7fdff !important;
}