【Misskey】ホームアイコンをお城にするカスタムCSS

  1. /* ホームアイコンをお城にする */
  2. /* ※@importはカスタムCSS入力フォームの一番上に持って行ってください */
  3. @import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
  4.  
  5. i.ti.ti-home {
  6. position: relative;
  7. }
  8. i.ti.ti-home::before {
  9. visibility: hidden;
  10. }
  11. i.ti.ti-home::after {
  12. font-family: 'Material Symbols Outlined' !important;
  13. font-size: 1.25em;
  14. content: "\eab1";
  15. /*
  16. サーカスのテント → \ea68
  17. アイスクリーム → \ea69
  18. その他 → https://fonts.google.com/icons
  19. */
  20. position: absolute;
  21. top: 50%;
  22. left: 50%;
  23. transform: translate(-50%, -50%);
  24. }