Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.79 KB | None | 0 0
  1. body {
  2.     background-color: lightyellow;
  3. }
  4.  
  5. .chat {
  6.     position: absolute;
  7.     top: 60px;
  8.     left: 30px;
  9.     background-color: #fffffe;
  10.     height: 80%;
  11.     width: 40%;
  12. }
  13.  
  14. .input {
  15.     position: absolute;
  16.     bottom: 0;
  17.     left: 0;
  18.     width: 100%;
  19.     height: 20px;
  20.     border: 2px;
  21.     border-color: azure;
  22.     background-color: #fffffe;
  23. }
  24.  
  25. .in {
  26.     position: relative;
  27. }
  28.  
  29. #text {
  30.     width: 60%;
  31.     height: 100%;
  32.     background-color: transparent;
  33.     border-color: transparent;
  34. }
  35. #text:focus{
  36.     border-color: transparent;
  37. }
  38.  
  39. #submit {
  40.     height: 100%;
  41.     width: 20%;
  42.     background-color: transparent;
  43.     border-color: transparent;
  44. }
  45.  
  46. #colorin {
  47.     height: 100%;
  48.     width: 20%;
  49.     background-color: transparent;
  50.     border-color: transparent;
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement