Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

index.html 659B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>bim</title>
  6. <style>
  7. html,
  8. body {
  9. width: 100%;
  10. height: 100%;
  11. overflow: hidden;
  12. margin: 0 0 0 0;
  13. }
  14. .c1 {
  15. width: 100%;
  16. height: 100%;
  17. }
  18. .scrollbar::-webkit-scrollbar {
  19. width: 2px;
  20. height: 2px;
  21. }
  22. .scrollbar::-webkit-scrollbar-thumb {
  23. border-radius: 0px;
  24. background: #00FFD5;
  25. }
  26. .scrollbar::-webkit-scrollbar-track {
  27. border-radius: 0;
  28. background: #2B2B2B;
  29. }
  30. </style>
  31. </head>
  32. <body>
  33. <div class="c1"></div>
  34. </body>
  35. </html>