index.css 795 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. .sass .scss
  12. sass格式会省略花括号和分号 所以常用scss存储
  13. */
  14. /*
  15. 混合宏
  16. @mixin 声明
  17. @include 调用
  18. */
  19. .box {
  20. width: 200px;
  21. height: 200px;
  22. font-size: 30px;
  23. border: 3px solid red;
  24. border-bottom: 3px solid #ff0;
  25. border-radius: 30px;
  26. border-left: 3px solid #0f0;
  27. border-radius: 50px;
  28. border-right: 5px solid pink;
  29. box-shadow: 30px 40px 13px purple;
  30. }
  31. h1 {
  32. color: blue;
  33. }
  34. h2 {
  35. color: blue;
  36. }
  37. ul {
  38. overflow: hidden;
  39. }
  40. ul li {
  41. float: left;
  42. margin-left: 5px;
  43. border-bottom: 2px solid #f00;
  44. }
  45. ul li a {
  46. color: #000;
  47. font-size: 40px;
  48. font-weight: bold;
  49. }
  50. ul li a:hover {
  51. color: red;
  52. }