style.css 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. html, body {
  2. height: 100%;
  3. }
  4. html {
  5. overflow-y: scroll;
  6. }
  7. body {
  8. padding: 0;
  9. margin: 0;
  10. background: #000000;
  11. }
  12. #videos {
  13. position: absolute;
  14. top: 0px;
  15. left: 0px;
  16. right: 0px;
  17. bottom: 0px;
  18. z-index: 0;
  19. }
  20. #chatbox {
  21. position: absolute;
  22. right: 20px;
  23. bottom: 0px;
  24. z-index: 1;
  25. }
  26. #chatinput {
  27. background: none repeat scroll 0 0 #F9F9F9;
  28. border: 1px solid #CCCCCC;
  29. border-radius: 0px 0px 5px 5px;
  30. font: 300 18px/40px 'light','Helvetica Neue',Arial,Helvetica,sans-serif;
  31. height: 40px;
  32. letter-spacing: 1px;
  33. margin-bottom: 0px;
  34. padding: 5px 10px;
  35. width: 277px;
  36. }
  37. #messages {
  38. overflow: scroll;
  39. background: none repeat scroll 0 0 #F9F9F9;
  40. border: 1px solid #CCCCCC;
  41. border-radius: 5px 5px 0px 0px;
  42. font: 300 18px/40px 'light','Helvetica Neue',Arial,Helvetica,sans-serif;
  43. height: 400px;
  44. letter-spacing: 1px;
  45. margin-bottom: 0px;
  46. padding: 5px 10px;
  47. width: 255px;
  48. }
  49. .flip {
  50. -webkit-transform: rotateY(180deg);
  51. }
  52. .buttonBox {
  53. position: absolute;
  54. top: 2px;
  55. left: 2px;
  56. z-index: 1;
  57. }
  58. .button {
  59. -moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
  60. -webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
  61. box-shadow:inset 0px 1px 0px 0px #ffffff;
  62. background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf) );
  63. background:-moz-linear-gradient( center top, #ededed 5%, #dfdfdf 100% );
  64. filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#dfdfdf');
  65. background-color:#ededed;
  66. -moz-border-radius:6px;
  67. -webkit-border-radius:6px;
  68. border-radius:6px;
  69. border:1px solid #dcdcdc;
  70. display:inline-block;
  71. color:#777777;
  72. font-family:arial;
  73. font-size:15px;
  74. font-weight:bold;
  75. padding:6px 24px;
  76. text-decoration:none;
  77. text-shadow:1px 1px 0px #ffffff;
  78. }
  79. .button:hover {
  80. background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #dfdfdf), color-stop(1, #ededed) );
  81. background:-moz-linear-gradient( center top, #dfdfdf 5%, #ededed 100% );
  82. filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#dfdfdf', endColorstr='#ededed');
  83. background-color:#dfdfdf;
  84. }
  85. .button:active {
  86. position:relative;
  87. top:1px;
  88. }