style.css 255 B

12345678910111213141516
  1. * {
  2. padding: 0;
  3. margin: 0;
  4. box-sizing: border-box;
  5. color: #fff;
  6. text-decoration: inherit;
  7. font-family: "Source Sans Pro", sans-serif;
  8. font-weight: 400;
  9. }
  10. ::-webkit-scrollbar {
  11. width: 0;
  12. }
  13. body {
  14. background: #28272d;
  15. }