common.css 218 B

12345678910111213141516171819202122232425
  1. *{
  2. margin: 0px;
  3. padding: 0px;
  4. }
  5. html,body{
  6. width: 100%;
  7. height: 100%;
  8. }
  9. html{
  10. }
  11. body{
  12. background: #f5f5f5;
  13. overflow: auto;
  14. }
  15. a{
  16. text-decoration: none;
  17. }
  18. li{
  19. list-style: none;
  20. }
  21. img{
  22. border: none;
  23. }