Advertisement
12Me21

sbs theme now with enter/leave messages

Oct 12th, 2016
352
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.14 KB | None | 0 0
  1. @import 'https://fonts.googleapis.com/css?family=Roboto:400,700';
  2.  
  3. #userlist{background-color:#F7F7F7;}
  4.  
  5. #inputbox{
  6.     border-radius: 2px;
  7.     border: 2px solid #00C8B4;
  8.     font-size: 0.8rem;
  9.     background-color: white;
  10.     color: #222;
  11. }
  12.  
  13. #main{
  14.     border-right: 1px solid #BBB;
  15. }
  16.  
  17. #messages{
  18.     background-color: white;
  19.     color: black;
  20.     font-size: 0.9rem;
  21.     font-family: 'Roboto',sans-serif;
  22.     padding: 0;
  23.     border-bottom: 2px solid #BBB;
  24. }
  25.  
  26. #messages li{
  27.     padding: 0.4em 0.5rem; 
  28. }
  29.  
  30. #messages li.message{
  31.     border-left: 0.5rem solid rgb(255,153,153);
  32.     padding-left: 1rem;
  33. }
  34.  
  35. #messages li.ownmessage{
  36.     background-color: rgba(255,153,153,0.2);
  37. }
  38.  
  39. #messages li.modulemessage{
  40.   border-left: 0.5rem solid rgb(187,187,187);
  41. }
  42.  
  43.  
  44. #messages li:last-child{
  45.     margin-bottom: 1rem;
  46. }
  47.  
  48. .sender{
  49.     font-weight: bold;
  50.     color: black !important;
  51. }
  52.  
  53. .modulemessagetext{
  54.     color: #666;
  55.     font-weight: bold;
  56. }
  57.  
  58. .systemmessagetext{
  59.     font-weight: bold;
  60.     text-align:center;
  61.     color:#666
  62. }
  63.  
  64. .messagetext{
  65.     padding: 0;
  66.     margin: .2em;
  67. }
  68.  
  69. .entertext:after{
  70.     content:" has entered the chat.";
  71. }
  72.  
  73. .leavetext:after{
  74.     content:" has left the chat.";
  75. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement