index.css 609 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. @charset "UTF-8";
  2. * {
  3. margin: 0;
  4. padding: 0;
  5. list-style: none;
  6. text-decoration: none;
  7. box-sizing: border-box;
  8. }
  9. /*
  10. 混合宏
  11. @mixin 定义一个可以在整个样式表中重复使用的样式
  12. @include 调用
  13. */
  14. .vase {
  15. font-size: 26px;
  16. color: plum;
  17. }
  18. .box {
  19. width: 400px;
  20. height: 500px;
  21. background: white;
  22. border-radius: 50px;
  23. box-shadow: 5px 10px 10px red;
  24. /* 多行注释 编译后会出现在css中 */
  25. }
  26. .box h1 {
  27. color: #ff0;
  28. font-size: 70px;
  29. }
  30. .box ul li a {
  31. color: red;
  32. font-size: 30px;
  33. font-style: italic;
  34. }
  35. .box ul li a:hover {
  36. color: #ff0;
  37. }