Advertisement
Hasli4

Untitled

Feb 3rd, 2025
6
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. /* Твой код ниже: */
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10. /*
  11. Код ниже нужен для того, чтобы страница была ровной и красивой.
  12. Мы изучим все свойства в одном из следующих уроков, а пока не обращай на них внимания.
  13. */
  14. @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Playfair+Display+SC&display=swap');
  15.  
  16. body {
  17. padding: 8px;
  18. box-sizing: border-box;
  19. font-family: 'Montserrat', sans-serif;
  20. }
  21.  
  22. .container {
  23. width: 80%;
  24. margin: 0 auto;
  25. }
  26.  
  27. header {
  28. background-color: #333;
  29. color: #fff;
  30. padding: 20px 0;
  31. }
  32.  
  33. header nav ul {
  34. list-style-type: none;
  35. margin: 0;
  36. padding: 0;
  37. }
  38.  
  39. header nav ul li {
  40. display: inline;
  41. margin-right: 20px;
  42. }
  43.  
  44. a {
  45. color: red;
  46. text-decoration: none;
  47. cursor: pointer;
  48. font-style: italic;
  49. }
  50.  
  51. .section {
  52. padding: 1em 0;
  53. }
  54.  
  55. section h2 {
  56. margin-bottom: 1em;
  57. }
  58.  
  59. footer {
  60. background-color: #333;
  61. color: #fff;
  62. padding: 20px 0;
  63. text-align: center;
  64. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement