index.css 754 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*sasa*/
  2. .box {
  3. width: 400px;
  4. height: 400px;
  5. border: 3px solid #f00;
  6. }
  7. .sun {
  8. width: 30px;
  9. height: 30px;
  10. border-radius: 20px;
  11. border: 1px solid #00f;
  12. }
  13. h1 {
  14. color: #f00;
  15. font-size: 40px;
  16. font-weight: lighter;
  17. }
  18. p {
  19. color: #f00;
  20. font-weight: 800;
  21. width: 200px;
  22. height: 100px;
  23. border: 2px solid #0f0;
  24. display: flex;
  25. align-items: center;
  26. justify-content: center;
  27. border-radius: 50%;
  28. box-shadow: 10px 20px 10px aqua;
  29. }
  30. .main {
  31. width: 400px;
  32. background: yellow;
  33. height: 400px;
  34. border: 2px solid #000;
  35. }
  36. .main ul {
  37. list-style: none;
  38. }
  39. .main ul li:first-child a {
  40. color: #ff0;
  41. }
  42. .main ul li a {
  43. text-decoration: none;
  44. font-size: 25px;
  45. font-weight: bold;
  46. }
  47. .main ul li a:hover {
  48. color: #f00;
  49. }