Advertisement
Janne252

Untitled

Jan 8th, 2016
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. @import url(https://fonts.googleapis.com/css?family=Open+Sans:600,700);
  2.  
  3. body {
  4. background: $background_color;
  5. color: $text_color;
  6. text-shadow: 0 0 1px rgba(0, 0, 0, 0.6), 0 0 2px rgba(0, 0, 0, 0.6);
  7. }
  8.  
  9. html, body {
  10. height: 100%;
  11. overflow: hidden;
  12. }
  13.  
  14. #log {
  15. font: 600 $font_size "Open Sans";
  16. position: absolute;
  17. bottom: 0;
  18. left: 0;
  19. width: 100%;
  20. box-sizing: border-box;
  21. overflow: hidden;
  22. padding: 10px 15px;
  23. padding-top: 100px;
  24. }
  25.  
  26. #log>div {
  27. margin-bottom: 5px;
  28. background: rgba(70, 70, 70, 0.6);
  29. padding: 5px 10px 10px;
  30. animation: flipInX 500ms ease, fadeOutUp 1s ease $message_hide_delay forwards;
  31. -webkit-animation: flipInX 500ms ease, fadeOutUp 1s ease $message_hide_delay forwards;
  32. box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  33. border: 10px solid transparent;
  34. padding: 15px;
  35. border: 22px transparent;
  36. -webkit-border-image: url(http://i.imgur.com/h53uvUc.png) 22 round; /* Safari 3.1-5 */
  37. -o-border-image: url(http://i.imgur.com/h53uvUc.png) 22 round; /* Opera 11-12.1 */
  38. border-image: url(http://i.imgur.com/h53uvUc.png) 22 round;
  39. padding: 10px;
  40. border-radius: 10px;
  41. }
  42.  
  43. #log>div.deleted {
  44. visibility: hidden;
  45. }
  46.  
  47. .meta {
  48. display: block;
  49. line-height: 1em;
  50. }
  51.  
  52. .message {
  53. word-wrap: break-word;
  54. line-height: 1.5em;
  55. }
  56.  
  57. .name {
  58. font-size: 0.6em;
  59. text-transform: uppercase;
  60. font-weight: 700;
  61. }
  62.  
  63. .colon {
  64. display: none;
  65. }
  66.  
  67. .badge {
  68. float: right;
  69. padding-left: 5px;
  70. height: 0.8em;
  71. }
  72.  
  73. #log .emote {
  74. background-repeat: no-repeat;
  75. background-position: center;
  76. padding: 0.1em;
  77. background-size: contain;
  78. }
  79.  
  80. #log .emote img {
  81. display: inline-block;
  82. height: 1em;
  83. opacity: 0;
  84. vertical-align: top;
  85. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement