lowheartrate

twitch-customchat-css

Jan 7th, 2021 (edited)
1,386
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.05 KB | None | 0 0
  1. @import url('https://fonts.googleapis.com/css2?family=Zilla+Slab:wght@400;600;700&display=swap');
  2. body, html { height: 100%; overflow: hidden; }
  3. body { height: 100%; }
  4. #log {
  5.     font-family: 'Zilla Slab', serif;
  6.     font-size: 32px;
  7.     padding: 0 7px;
  8.     height: 100%;
  9.     display: flex;
  10.     flex-flow: column nowrap;
  11.     justify-content: flex-end;
  12.     text-align: justify;
  13.     text-justify: inter-word;
  14. }
  15. span.meta {
  16.     display: flex;
  17.     flex-flow: row wrap;
  18.     align-items: center;
  19. }
  20.  
  21. span.badges {
  22.     margin: 0 5px;
  23.     display: flex;
  24.     flex-flow: row wrap;
  25.     align-items: center;
  26.     justify-content: center;
  27. }
  28.  
  29. #log > div {
  30.     background: rgba(63,63,63,1);
  31.     margin-top: 10px;
  32.     padding: 15px 5px;
  33.     border-radius: 5px;
  34.     color: #191919;
  35.     display: flex;
  36.     flex-flow: row wrap;   
  37.     justify-content: flex-start;
  38.     align-items: center;
  39.  
  40.     /* transition?? */
  41.    
  42. }
  43.  
  44. span.name {
  45.     font-weight: 700;
  46.     align-self: center;
  47.     margin-top: -15px;
  48. }
  49.  
  50. span.name:after {
  51.     content: ':';
  52. }
  53.  
  54. span.message {
  55.     font-weight: 400;
  56.     color: #fff;
  57.     margin-left: 10px;
  58.     align-self: center;
  59. }
Advertisement
Add Comment
Please, Sign In to add comment