Guest User

Untitled

a guest
Feb 25th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. body{
  2. font-family: 'Nunito';
  3. }
  4.  
  5. h2{
  6. font-size: 18px;
  7. padding: 10px 20px;
  8. color: #575ed8;
  9. }
  10.  
  11. #frost-chat{
  12. max-width: 600px;
  13. margin: 30px auto;
  14. border: 1px solid #ddd;
  15. box-shadow: 1px 3px 5px rgba(0,0,0,0.05);
  16. border-radius: 2px;
  17. }
  18.  
  19. #chat-window{
  20. height: 400px;
  21. overflow: auto;
  22. background: #f9f9f9;
  23. }
  24.  
  25. #output p{
  26. padding: 14px 0px;
  27. margin: 0 20px;
  28. border-bottom: 1px solid #e9e9e9;
  29. color: #555;
  30. }
  31.  
  32. #feedback p{
  33. color: #aaa;
  34. padding: 14px 0px;
  35. margin: 0 20px;
  36. }
  37.  
  38. #output strong{
  39. color: #575ed8;
  40. }
  41.  
  42. label{
  43. box-sizing: border-box;
  44. display: block;
  45. padding: 10px 20px;
  46. }
  47.  
  48. input{
  49. padding: 10px 20px;
  50. box-sizing: border-box;
  51. background: #eee;
  52. border: 0;
  53. display: block;
  54. width: 100%;
  55. background: #fff;
  56. border-bottom: 1px solid #eee;
  57. font-family: Nunito;
  58. font-size: 16px;
  59. }
  60.  
  61. button{
  62. background: #575ed8;
  63. color: #fff;
  64. font-size: 18px;
  65. border: 0;
  66. padding: 12px 0;
  67. width: 100%;
  68. border-radius: 0 0 2px 2px;
  69. }
Add Comment
Please, Sign In to add comment