Advertisement
Guest User

chat arkti 2.0

a guest
Sep 25th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. @import url(https://fonts.googleapis.com/css?family=Kelly+Slab);
  2.  
  3. * {
  4. box-sizing: border-box;
  5. }
  6.  
  7. html, body {
  8. height: 100%;
  9. overflow: hidden;
  10. }
  11.  
  12. body {
  13. text-shadow: 0 0 1px #000, 0 0 2px #000;
  14. background: $background_color;
  15. font-family: 'Kelly Slab';
  16. font-weight: 700;
  17. font-size: $font_size;
  18. line-height: 1.5em;
  19. color: $text_color;
  20. }
  21.  
  22. #log>div {
  23. animation: fadeInRight .3s ease forwards, fadeOut 0.5s ease $message_hide_delay forwards;
  24. -webkit-animation: fadeInRight .3s ease forwards, fadeOut 0.5s ease $message_hide_delay forwards;
  25. }
  26.  
  27. .colon {
  28. display: none;
  29. }
  30.  
  31. #log {
  32. display: table;
  33. position: absolute;
  34. bottom: 0;
  35. left: 0;
  36. padding: 0 10px 10px;
  37. width: 100%;
  38. table-layout: fixed;
  39. }
  40.  
  41. #log>div {
  42. display: table-row;
  43. }
  44.  
  45. #log>div.deleted {
  46. visibility: hidden;
  47. }
  48.  
  49. #log .emote {
  50. background-repeat: no-repeat;
  51. background-position: center;
  52. background-size: contain;
  53. padding: 0.4em 0.2em;
  54. position: relative;
  55. }
  56.  
  57. #log .emote img {
  58. display: inline-block;
  59. height: 1em;
  60. opacity: 0;
  61. }
  62.  
  63. #log .message,#log .meta {
  64. vertical-align: top;
  65. display: table-cell;
  66. padding-bottom: 0.1em;
  67. }
  68.  
  69. #log .meta {
  70. padding-right: 0.5em;
  71. white-space: nowrap;
  72. text-overflow: ellipsis;
  73. overflow: hidden;
  74. }
  75.  
  76. #log .message {
  77. word-wrap: break-word;
  78. width: 86%;
  79. }
  80.  
  81. .badge {
  82. display: inline-block;
  83. margin-right: 0.2em;
  84. position: relative;
  85. height: 1em;
  86. vertical-align: middle;
  87. top: -0.1em;
  88. }
  89.  
  90. .name {
  91. margin-left: 0.2em;
  92. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement