style.css 812 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. h4 {
  2. margin: 8px 0 8px 0;
  3. font-weight: bold;
  4. }
  5. b {
  6. font-weight: bold;
  7. }
  8. button {
  9. outline: none;
  10. cursor: pointer;
  11. background: #ccc;
  12. border: none;
  13. color: #333;
  14. margin: 2px 0 2px 2px;
  15. padding: 10px;
  16. transition: all 0.3s;
  17. }
  18. button:hover {
  19. background: #b1b1b1;
  20. }
  21. ul {
  22. margin-left: 10px;
  23. padding-left: 15px;
  24. list-style: disc;
  25. }
  26. /* Let's get this party started */
  27. ::-webkit-scrollbar {
  28. padding-top: 10px;
  29. width: 8px;
  30. height: 8px;
  31. }
  32. /* Track */
  33. ::-webkit-scrollbar-track {
  34. border-radius: 0;
  35. width: 3px;
  36. height: 3px;
  37. background: rgba(55, 55, 55, 0.1);
  38. }
  39. /* Handle */
  40. ::-webkit-scrollbar-thumb {
  41. border-radius: 0;
  42. width: 8px;
  43. height: 8px;
  44. background: rgba(155, 155, 155, 0.8);
  45. }
  46. ::-webkit-scrollbar-thumb:window-inactive {
  47. background: rgba(55, 55, 55, 0.8);
  48. }