Advertisement
leoSHEIK

Untitled

Feb 24th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.85 KB | None | 0 0
  1. .color-0{color: #ffffff;}
  2. .color-1{color: #ff4444;}
  3. .color-2{color: #99cc00;}
  4. .color-3{color: #ffbb33;}
  5. .color-4{color: #0099cc;}
  6. .color-5{color: #33b5e5;}
  7. .color-6{color: #aa66cc;}
  8. .color-8{color: #cc0000;}
  9. .color-9{color: #cc0068;}
  10.  
  11. * {
  12.   font-family: 'Lato', sans-serif;
  13.   margin: 0;
  14.   padding: 0;
  15. }
  16.  
  17. .no-grow {
  18.   flex-grow: 0;
  19. }
  20.  
  21. em {
  22.   font-style: normal;
  23. }
  24.  
  25. #app {
  26.   font-family: 'Lato', Helvetica, Arial, sans-serif;
  27.   -webkit-font-smoothing: antialiased;
  28.   -moz-osx-font-smoothing: grayscale;
  29.   color: white;
  30. }
  31.  
  32. .chat-window {
  33.   position: absolute;
  34.   top: 15px;
  35.   left: 15px;
  36.   width: 38%;
  37.   height: 240px;
  38.  
  39.   background-color: rgba(52, 73, 94, 0);
  40.   -webkit-animation-duration: 2s;
  41. }
  42.  
  43.  
  44. .chat-messages {
  45.   position: relative;
  46.   height: 95%;
  47.   font-size: 1.2rem;
  48.   margin: 10px;
  49.  
  50.   overflow-x: hidden;
  51.   overflow-y: hidden;
  52. }
  53.  
  54.  
  55. .chat-input {
  56.   font-size: 1.2rem;
  57.   position: absolute;
  58.  
  59.   top: 257px;
  60.   left: 15px;
  61.   width: 38%;
  62.  
  63.   box-sizing: border-box;
  64. }
  65.  
  66. .prefix {
  67.   position: absolute;
  68.   margin-top: 2px;
  69.   left: 4px;
  70. }
  71.  
  72. textarea {
  73.   font-size: 1.1rem;
  74.   display: block;
  75.   box-sizing: border-box;
  76.   padding: 5px;
  77.   padding-left: 27px;
  78.   color: white;
  79.   background-color: rgba(44, 62, 80, 0);
  80.   width: 100%;
  81.   border-width: 0;
  82.   height: 34px;
  83.   overflow: hidden;
  84. }
  85.  
  86. textarea:focus, input:focus {
  87.     outline: none;
  88. }
  89.  
  90. .msg {
  91.   margin-bottom: 3px;
  92. }
  93.  
  94. .multiline {
  95.   margin-left: 1.5rem;
  96.   text-indent: -1.5rem;
  97.   white-space: pre-line;
  98. }
  99.  
  100. .suggestions {
  101.   list-style-type: none;
  102.   padding: 5px;
  103.   padding-left: 27px;
  104.   font-size: 1.1rem;
  105.   box-sizing: border-box;
  106.   color: white;
  107.   background-color: rgba(44, 62, 80, 1.0);
  108.   width: 100%;
  109. }
  110.  
  111. .help {
  112.   color: #b0bbbd;
  113. }
  114.  
  115. .disabled {
  116.   color: #b0bbbd;
  117. }
  118.  
  119. .suggestion {
  120.   margin-bottom: 5px;
  121. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement