style.css 2.8 KB

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