index.css 637 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. @charset "UTF-8";
  2. @import url(reset.css);
  3. /*多行注释*/
  4. .box {
  5. width: 500px;
  6. height: 500px;
  7. border: 2px solid #f00;
  8. font-size: 30px;
  9. font-weight: bold;
  10. font-family: "Courier New", Courier, monospace;
  11. font-style: italic;
  12. }
  13. .box h1 {
  14. color: purple;
  15. }
  16. .box h1 span {
  17. color: red !important;
  18. font-size: 15px;
  19. }
  20. .box ul li {
  21. color: plum;
  22. }
  23. .box ul li:hover {
  24. color: red !important;
  25. }
  26. .box1 {
  27. width: 500px;
  28. height: 500px;
  29. color: red !important;
  30. background: yellow;
  31. font-size: 10px;
  32. background: lightblue;
  33. border-radius: 50%;
  34. box-shadow: 10px 10px 5px yellow;
  35. box-shadow: 10px 10px 10px blue;
  36. }