10
0

index.css 715 B

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