HumbleDeer

includes.css

Apr 18th, 2021 (edited)
670
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.59 KB | None | 0 0
  1. /*Add the font files from external sources*/
  2. @font-face {
  3.     font-family: 'OpenDyslexic';
  4.     src: url('https://discordstyles.github.io/discord-dyslexia/src/font/OpenDyslexic-Regular.woff');
  5.     font-style: normal;
  6.     font-weight: normal;
  7. }
  8. @font-face {
  9.     font-family: 'OpenDyslexic';
  10.     src: url('https://discordstyles.github.io/discord-dyslexia/src/font/OpenDyslexic-Italic.woff');
  11.     font-style: italic;
  12.     font-weight: normal;
  13. }
  14. @font-face {
  15.     font-family: 'OpenDyslexic';
  16.     src: url('https://discordstyles.github.io/discord-dyslexia/src/font/OpenDyslexic-Bold.woff');
  17.     font-weight: bold;
  18.     font-style: normal;
  19. }
  20. @font-face {
  21.     font-family: 'OpenDyslexic';
  22.     src: url('https://discordstyles.github.io/discord-dyslexia/src/font/OpenDyslexic-BoldItalic.woff');
  23.     font-weight: bold;
  24.     font-style: italic;
  25. }
  26.  
  27. /*Text in the righthand chat box*/
  28. div.chat-line__message,
  29. div.chat-line__status,
  30. textarea,h3,h2,h1,p,input,li
  31. {
  32.   font-family: 'OpenDyslexic', 'Whitney', sans-serif !important;
  33. letter-spacing: 1px;
  34. font-weight: 500;
  35. }
  36.  
  37.  
  38.  
  39.  div.chat-line__status{
  40.   background-color: var(--chat-alert-bg);
  41.   color:white;
  42. }
  43.  
  44. img.chat-badge {
  45.   background-color:var(--chat-badge-bg);
  46. }
  47.  
  48. img.chat-image {
  49.   height: var(--chat-emoji-size);
  50.   width: var(--chat-emoji-size);
  51. }
  52.  
  53. div.chat-line__message {
  54.   padding-top: var(--chat-paragraph-spacing);
  55.   padding-bottom: var(--chat-paragraph-spacing);
  56. }
  57. span.chat-author__display-name {
  58.   background-color:rgba(255,255,255,0.04);
  59.   padding:0;
  60.   padding-left:4px;
  61.   padding-right:4px;
  62.   border-radius:5px;
  63.   border: 1px dashed;
  64.   word-break: normal
  65. }
Add Comment
Please, Sign In to add comment