index.css 481 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. @charset "UTF-8";
  2. * {
  3. margin: 0;
  4. padding: 0;
  5. list-style: none;
  6. text-decoration: none;
  7. box-sizing: border-box;
  8. }
  9. body, html {
  10. font-size: 30px;
  11. }
  12. /* 你好 */
  13. h1 {
  14. color: #f00 !important;
  15. font-size: 50px;
  16. }
  17. ul {
  18. width: 400px;
  19. height: 400px;
  20. background: #ff0;
  21. list-style: none;
  22. }
  23. ul li {
  24. padding: 10px;
  25. }
  26. ul li a {
  27. text-decoration: none;
  28. color: #00f;
  29. font-size: 40px;
  30. font-weight: bold;
  31. }
  32. ul li a:hover {
  33. color: #f00;
  34. }
  35. p {
  36. color: #00f;
  37. }