index.css 370 B

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