awards.css 326 B

123456789101112131415161718192021222324
  1. * {
  2. padding: 0;
  3. margin: 0;
  4. }
  5. html,
  6. body {
  7. width: 100%;
  8. height: 100%;
  9. box-sizing: border-box;
  10. overflow: hidden;
  11. }
  12. .anards {
  13. position: relative;
  14. width: 100%;
  15. height: 100%;
  16. overflow-y: auto;
  17. }
  18. .anards::-webkit-scrollbar {
  19. width:0;
  20. }
  21. .anards img {
  22. width: 100%;
  23. display: block;
  24. }