index.css 662 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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 ul {
  31. list-style: none;
  32. }
  33. .main ul li:first-child a {
  34. color: #ff0;
  35. }
  36. .main ul li a {
  37. text-decoration: none;
  38. font-size: 25px;
  39. font-weight: bold;
  40. }
  41. .main ul li a:hover {
  42. color: #f00;
  43. }