Advertisement
Guest User

sengi light theme

a guest
Dec 27th, 2020
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.46 KB | None | 0 0
  1.  
  2. .sliding-column__right-display
  3. {
  4.   left: -100%;  
  5. }
  6.  
  7. body{
  8.   background-color: white;  
  9. }
  10.  
  11. #display-zone
  12. {
  13.   height: 100%;  
  14.   left: 0;  
  15.  }
  16. /*hide left bar*/
  17. .left-bar{display: none;}
  18. /*hide footer bar*/  app-streams-selection-footer{display: none;}
  19.  
  20. /*main background*/
  21. .flexcroll{background-color: #fafaff;}
  22.  
  23.  
  24. a.stream-column__stream-selector
  25. {
  26.   border-bottom: 1px solid #ccc;
  27.   /*width: 100%;*/
  28.   background-color:#eee;
  29.   color: black;    
  30. }
  31. .stream-column__stream-header
  32. {
  33.   border: 0px;
  34. }
  35. .overlay__header
  36. {
  37.   border-bottom: 1px solid #ccc;
  38.     background-color:#eee;
  39. }
  40.  
  41. path,svg
  42. {
  43.   color: #fff;  
  44.   filter: drop-shadow(0px 2px 2px #345);
  45. }
  46. .stream-toots__load-buffer
  47. {
  48.   border: 1px;
  49.   border-style: none solid solid solid;
  50.   border-color: #ccc;
  51.  
  52. }
  53.  
  54.  
  55.  
  56. /*toot*/
  57. .status__name{display: grid;}
  58.  
  59. .status
  60. {  
  61.   background-color: #fff;
  62. }
  63. .stream-toots__status
  64. {
  65.   border: 3px;
  66.   border-style: solid;
  67.   border-color: #eaeafa;
  68.   margin-bottom: 6px;
  69. }
  70.  
  71. /*txt color*/
  72. div.status p,
  73. span.h-card,
  74. .poll,
  75. .poll__result--percentage,
  76. .content
  77. {
  78.   color:#345;  
  79. }
  80. #display-zone  a
  81. {
  82.   color:#77c;
  83. }
  84. .status__name--displayname
  85. {
  86.   color: #a88;
  87. }
  88.  
  89. .status__labels
  90. {
  91.   color: white;
  92.   font-weight: 500;
  93. }
  94.  
  95. .card-data__link{
  96.   padding: 3px;
  97.   border:1px solid #ddd;
  98. }
  99. .card-data__link--image{
  100.   padding: 2px;
  101.   border-right:1px solid #ddd;
  102. }
  103. .card-data:hover
  104. {
  105.   background-color: #fafaff;
  106. }
  107.  
  108. /*warning*/
  109. .status__content-warning {
  110.   border: 1px;
  111.   border-style: dotted;
  112. }
  113.  
  114.  
  115.  
  116.  
  117. /*poll*/
  118. .poll__result--progress-bar
  119. {  
  120.   background-color: #888;
  121. }
  122. .poll__result--progress-bar--most-votes
  123. {
  124.   background-color: #abb;
  125. }
  126.  
  127.  
  128. /*profile*/
  129. .profile-header__inner
  130. {
  131.   background-color: unset;
  132. }
  133.  
  134. .profile-sub-header,
  135. .profile-name *,
  136. .profile-follows *,
  137. .profile-fields *,
  138. .profile-description *,
  139. .profile__extra-info
  140. {  
  141.   color: black;
  142.   background-color: white;
  143. }
  144.  
  145. .profile-follows,
  146. .profile-name,
  147. .profile-fields,
  148. .profile__extra-info
  149. {  
  150.   margin-top: 4px;
  151.   border: 1px solid gray;
  152. }
  153.  
  154.  
  155.  
  156. ::-webkit-scrollbar-thumb {
  157.   background: #c8c8ee;
  158. }
  159. ::-webkit-scrollbar-track {
  160.   background: #f1f1f1;
  161.  
  162.   border: 1px solid #fafaff;
  163. }
  164.  
  165. ::-webkit-scrollbar {
  166.   width: 10px;
  167. }
  168. /* Track */
  169. ::-webkit-scrollbar-track {
  170.   box-shadow: inset 0 0 5px f1f1f1;
  171.   border-radius: 10px;
  172. }
  173.  
  174. /* Handle */
  175. ::-webkit-scrollbar-thumb {
  176.   background: #d8d8ee;
  177.   border-radius: 10px;
  178. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement