index.css 914 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. .box {
  10. color: #f00;
  11. background-color: #f00;
  12. }
  13. .part4 {
  14. cursor: pointer;
  15. width: 100px;
  16. height: 100px;
  17. background: plum;
  18. }
  19. .box {
  20. width: 800px;
  21. height: 800px;
  22. border: 1px solid #000;
  23. background-color: #ff0;
  24. border-radius: 20px;
  25. border: 3px double #00f;
  26. box-shadow: 30px 35px 15px #f0f;
  27. font-size: 25px;
  28. font-weight: 600;
  29. }
  30. .box h1 {
  31. font-size: 20px;
  32. color: red;
  33. }
  34. .box .main {
  35. border: 1px solid #f00;
  36. color: purple;
  37. width: 200px;
  38. height: 100px;
  39. display: flex;
  40. justify-content: center;
  41. align-items: center;
  42. color: #00f;
  43. }
  44. .box .main:hover {
  45. color: #f00;
  46. }
  47. .box h2, .box h3, .box h4, .box h5, .box h6 {
  48. width: 200px;
  49. height: 300px;
  50. background-color: yellow;
  51. background-color: white;
  52. margin-top: 20px;
  53. }
  54. /*
  55. 哈哈哈哈
  56. */