atm959

client.css

Mar 28th, 2016
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.11 KB | None | 0 0
  1. html {
  2.     height: 100%;
  3. }
  4.  
  5. body {
  6.     height: 100%;
  7.     background-attachment: fixed;
  8.     background-repeat: no-repeat;
  9.     background: blue; /* For browsers that do not support gradients */
  10.     background: -webkit-linear-gradient(black, blue); /* For Safari 5.1 to 6.0 */
  11.     background: -o-linear-gradient(black, blue); /* For Opera 11.1 to 12.0 */
  12.     background: -moz-linear-gradient(black, blue); /* For Firefox 3.6 to 15 */
  13.     background: linear-gradient(black, blue); /* Standard syntax */
  14. }
  15.  
  16. #messageBox {
  17.     font-family: Arial, Helvetica, sans-serif;
  18.     font-size: 15pt;
  19.     position: fixed;
  20.     bottom: 0;
  21.     left: 0;
  22.     min-width: 89%;
  23.     min-height: 10%;
  24.     background-attachment: fixed;
  25.     background-repeat: no-repeat;
  26.     background: black;
  27.     color: white;
  28.     resize: none;
  29. }
  30.  
  31. #sendButton {
  32.     font-family: Arial, Helvetica, sans-serif;
  33.     font-size: 15pt;
  34.     position: fixed;
  35.     bottom: 0%;
  36.     left: 90%;
  37.     min-height: 10%;
  38.     min-width: 10%
  39. }
  40.  
  41. #messagePlace {
  42.     height:50%;
  43.     width:100%;
  44.     position: relative;
  45.     background-color: rgba(0,0,0,0.6);
  46. }
Advertisement
Add Comment
Please, Sign In to add comment