Advertisement
YorKnEz

Untitled

Apr 6th, 2021
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. body {
  2. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
  3. 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif,
  4. 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  5. overflow: hidden;
  6. }
  7.  
  8. .container {
  9. height: 100vh;
  10. display: flex;
  11. align-items: center;
  12. justify-content: center;
  13. flex-direction: column;
  14. }
  15.  
  16. .form-error {
  17. color: red;
  18. }
  19.  
  20. a {
  21. text-decoration: none;
  22. color: white;
  23. }
  24. a:hover {
  25. text-decoration: none;
  26. color: white;
  27. }
  28.  
  29. .custom-a {
  30. color: lightseagreen;
  31. }
  32. .custom-a:hover {
  33. color: lightskyblue;
  34. }
  35.  
  36. .chatbar-container {
  37. background-color: #343a40;
  38. height: 100%;
  39. padding: 8px;
  40. display: flex;
  41. flex-direction: column;
  42. overflow: scroll;
  43. border-top: 1px solid gray;
  44. border-right: 1px solid gray;
  45. }
  46. .chatbar-container::-webkit-scrollbar-track {
  47. background: #343a40;
  48. }
  49. .chatbar-container::-webkit-scrollbar-thumb {
  50. background: #343a40;
  51. }
  52. .chatbar-container:hover::-webkit-scrollbar-thumb {
  53. background: #888;
  54. }
  55.  
  56. /* width */
  57. ::-webkit-scrollbar {
  58. width: 8px;
  59. height: 100%;
  60. }
  61.  
  62. /* Track */
  63. ::-webkit-scrollbar-track {
  64. background: #fff;
  65. }
  66.  
  67. /* Handle */
  68. ::-webkit-scrollbar-thumb {
  69. background: #888;
  70. border-radius: 10px;
  71. }
  72.  
  73. /* Handle on hover */
  74. ::-webkit-scrollbar-thumb:hover {
  75. background: #555;
  76. }
  77.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement