index.css 779 B

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