Advertisement
eyes443

Untitled

Oct 15th, 2017
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.99 KB | None | 0 0
  1. .chat-area span{
  2.   color: dimgray;
  3. }
  4.  
  5. .chat-area .user{
  6.  float: right;
  7.  text-align: left;
  8. }
  9.  
  10. .chat-area .friend{
  11.  float: left;
  12. }
  13.  
  14. .results tr[visible='false'],
  15. .no-result{
  16.   display:none;
  17. }
  18.  
  19. .results tr[visible='true']{
  20.   display:table-row;
  21. }
  22.  
  23. .youtube-video {
  24.   float: left;
  25.   width:66%;
  26.   height: 0;
  27.   /*margin-left: 10px;*/
  28.   /*position:relative;
  29.   padding-bottom:56.25%;
  30.   padding-top:30px;
  31.   height:0;
  32.   overflow:hidden;
  33.   width: 100%;*/
  34. }
  35.  
  36. .youtube-video iframe {
  37.   width:98%;
  38.   min-height:500px;
  39.   /*position:absolute;
  40.   top:0;
  41.   left:0;
  42.   width:450px;*/
  43. }
  44.  
  45. .chat {
  46.     /*float: left;
  47.     width:34%;
  48.     margin:auto;
  49.     position: relative;*/
  50.     float: right;
  51.     width:33%;
  52. }
  53.  
  54. .chat .chat-self{
  55.   float: right;
  56.   margin-left: 55px;
  57. }
  58.  
  59. .chat .chat-self p{
  60.   background: lightblue;
  61.   border: 0px;
  62.   border-radius: 3px;
  63.   text-align: center;
  64.   width: 100%;
  65.   padding: 5px;
  66. }
  67.  
  68. .chat .chat-friend p{
  69.   background: lightgray;
  70.   border: 3px;
  71.   width: 100%;
  72.   border-radius: 3px;
  73.   padding: 5px;
  74.   text-align: center;
  75. }
  76.  
  77. .name-tag span{
  78.   text-align: right;
  79. }
  80.  
  81. .chat .chat-area{
  82.   width: 400px;
  83.   height: 450px;
  84.   padding: 10px;
  85.   border: 1px solid #ccc;
  86.   border-radius: 2px;
  87.   overflow-y: scroll;
  88.   position: relative;
  89. }
  90.  
  91. .chat-area::-webkit-scrollbar{
  92.   width: 10px;
  93. }
  94.  
  95. .chat-area::-webkit-scrollbar-thumb{
  96.   border-radius: 5px;
  97.   background: rgba(0,0,0,.1);
  98. }
  99.  
  100. .chat .chat-area a{
  101.   color:pink;
  102. }
  103.  
  104. .chat .chat-area p{
  105.   margin: 2px 0;
  106. }
  107.  
  108. .chat .entry {
  109.   width: 100%;
  110.   height: 40px;
  111.   margin-left: 0px;
  112.   display: inline-block;
  113.   padding: 3px;
  114.   margin-top: 5px;
  115.   resize: none;
  116.   border: 1px solid #ccc;
  117.   border-radius: 3px;
  118.   font: Tahoma, sans-serif;
  119.   -webkit-box-sizing: border-box;
  120.   -moz-box-sizing: border-box;
  121.   box-sizing: border-box;
  122. }
  123.  
  124. /*.container {
  125.   min-width: 98%;
  126.  
  127.   margin-right:50px;
  128.   margin-left: auto;
  129.   padding-right: 0px;
  130.   padding-left: 15px;
  131.   width: 100%;
  132. }*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement