Advertisement
antijingoist

Mastodon Theme: Purplish

Nov 17th, 2022 (edited)
1,623
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.19 KB | Source Code | 0 0
  1. .drawer--account, .compose-form {
  2.     background:white;
  3. }
  4.  
  5. .column-back-button, .column-header {
  6.   background: #f9bac5;
  7. }
  8.  
  9. .column-header__button {
  10.   background: transparent;
  11.  
  12. }
  13.  
  14. .detailed-status__action-bar, .detailed-status {
  15.     background: #eff7ff;
  16.  
  17. }
  18.  
  19. .detailed-status__wrapper .detailed-status__action-bar,
  20. .focusable:focus .detailed-status,
  21. .detailed-status__action-bar,
  22. {
  23.     background: #eff7ff;
  24.  
  25. }
  26.  
  27. .focusable:focus {
  28.   background: #eff7ff;
  29.   box-shadow: 0px 0px 20px 12px #7c7a7a7a;
  30.   transition: .25s all;
  31.   z-index: 1;
  32. }
  33.  
  34. .status.status-public.focusable:has( button.status__action-bar-button.star-icon.icon-button.active) {
  35.   background: #ffffbb;
  36.   transition: 0.25s all;
  37.    
  38. }
  39.  
  40. .status__wrapper-reply.focusable {
  41.   background: #f7fff3;
  42. }
  43.  
  44. .account__section-headline button, .notification__filter-bar button,
  45. .account__header__bar,
  46. .explore__search-header {
  47.   background: #dcedff;
  48. }
  49.  
  50. .account__section-headline, .notification__filter-bar {
  51.   background: #cfe6ff;
  52.   border-bottom: 1px solid #a4b6c6;
  53. }
  54.  
  55. .account__header .account__header__fields dd, .public-account-bio .account__header__fields dd, .drawer__inner, .drawer__inner__mastodon {
  56.   background-color: white;
  57. }
  58.  
  59. .search__input {
  60.     border-radius: 15px;
  61. }
  62.  
  63. .search__input:active,
  64. .search__input:focus {
  65.     background-color: white;
  66. }
  67.  
  68. .dismissable-banner {
  69.   background: #ffffcd;
  70.   border-bottom: 1px solid #cdcd00;
  71. }
  72.  
  73. @media screen and (max-width: 1174px){
  74.     .column-back-button, .column-header {
  75.         background: transparent;
  76.     }
  77.     .columns-area__panels__pane--navigational .navigation-panel {
  78.       background: #e2a5ff;
  79.       border-left: 1px solid #c0cdd9;
  80.     }  
  81.     .columns-area__panels__pane--navigational .column-link__icon {
  82.       color: ##fffe9e;
  83.     }
  84.    
  85.     .tabs-bar__wrapper {
  86.       background: #e3caff7d;
  87.       backdrop-filter: blur(10px);
  88.     }
  89.    
  90.     .ui__header {
  91.       background: #e2a5ff;
  92.       border-bottom: 1px solid #c0cdd9;
  93.     }
  94.    
  95.     .ui, .columns-area {
  96.       background: white;
  97.     }
  98.    
  99.     .column-link--transparent {
  100.       background: transparent;
  101.       color: yellow;
  102.     }
  103.    
  104.     .column-link--transparent.active {
  105.       color: #000000;
  106.       background: yellow;
  107.       border: 1px solid yellow;
  108.       transition: .25s all;
  109.     }
  110. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement