Advertisement
Guest User

SillyTavern CSS to wrap text around avatar

a guest
Jul 17th, 2024
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.61 KB | None | 0 0
  1. @import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&display=swap');
  2. body {
  3.   font-family: "Atkinson Hyperlegible";
  4. }
  5. .mes {
  6.   display: block;
  7. }
  8.  
  9. .mesAvatarWrapper{
  10.   display: inline;
  11.   float: left;
  12.   margin-right: 10px;
  13. }
  14.  
  15. .mes_block {
  16.   overflow-x: visible;
  17. }
  18.  
  19. .swipe_right, .swipe_left {
  20.   bottom: 5px;
  21. }
  22.  
  23. .last_mes .mesAvatarWrapper {
  24.   padding-bottom: 0px;
  25. }
  26.  
  27. .last_mes .mes_block {
  28.   padding-bottom: 20px;
  29. }
  30. .mes_text, .last_mes .mes_text {
  31.   padding-right: 0px;
  32.   margin-left: -10px;
  33.   font-size: 20px;
  34.   text-align: justify;
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement