Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.24 KB | None | 0 0
  1. * {
  2.     box-sizing: border-box;
  3. }
  4.  
  5. html {
  6.     overflow-y: scroll;
  7. }
  8.  
  9. body {
  10.     font-family: monospace;
  11.     font-size: 14px;
  12.     max-width: 480px;
  13.     margin: 0 auto;
  14.     padding: 20px
  15. }
  16.  
  17. input {
  18.     width: 100%;
  19.     padding: 5px;
  20.     margin: 5px 0;
  21. }
  22.  
  23. button {
  24.     float: right;
  25. }
  26.  
  27. li {
  28.     margin: 5px 0;
  29. }
  30.  
  31. .nazwa {
  32.     float: left;
  33. }
  34. .nazwa{
  35.     background-color:red;}
  36.  
  37. #chatControls {
  38.     overflow: auto;
  39.     margin: 0 0 5px 0
  40. }
  41.  
  42. #userlist {
  43.     position: fixed;
  44.     left: 50%;
  45.     list-style: none;
  46.     margin-left: 250px;
  47.     background: #f0f0f9;
  48.     padding: 5px 10px;
  49.     width: 150px;
  50.     top: 11px;
  51. }
  52.  
  53. #chat p {
  54.     margin: 5px 0;
  55.     font-weight: 300
  56. }
  57.  
  58. #chat .timestamp {
  59.     position: absolute;
  60.     top: 10px;
  61.     right: 10px;
  62.     font-size: 12px;
  63. }
  64.  
  65. #chat article {
  66.     background: #f1f1f1;
  67.     padding: 10px;
  68.     margin: 10px 0;
  69.     border-left: 5px solid #aaa;
  70.     position: relative;
  71.     word-wrap: break-word;
  72. }
  73.  
  74. #chat article:first-of-type {
  75.     background: #c9edc3;
  76.     border-left-color: #74a377;
  77.     animation: enter .2s 1;
  78. }
  79.  
  80. @keyframes enter {
  81.     from { transform: none;        }
  82.     50%  { transform: scale(1.05); }
  83.     to   { transform: none;        }
  84. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement