index.css 484 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. h3 {
  2. color: pink;
  3. }
  4. /*
  5. var aa = xxx1;
  6. */
  7. .happy {
  8. cursor: pointer;
  9. }
  10. .box {
  11. border: 2px solid #f00;
  12. width: 500px;
  13. height: 500px;
  14. border-radius: 20px;
  15. box-shadow: 10px 50px 15px yellow;
  16. }
  17. .box h1 {
  18. color: skyblue;
  19. color: red;
  20. font-size: 24px;
  21. font-style: italic;
  22. font-weight: 300;
  23. }
  24. .box ul {
  25. width: 250px;
  26. background-color: yellow;
  27. border: 2px solid #f00;
  28. }
  29. .box ul li {
  30. color: red;
  31. font-size: 20px;
  32. }
  33. .box ul li:hover {
  34. color: purple;
  35. }