Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Твой код ниже: */
- /*
- Код ниже нужен для того, чтобы страница была ровной и красивой.
- Мы изучим все свойства в одном из следующих уроков, а пока не обращай на них внимания.
- */
- @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');
- body {
- padding: 8px;
- box-sizing: border-box;
- font-family: 'Montserrat', sans-serif;
- }
- .container {
- width: 80%;
- margin: 0 auto;
- }
- header {
- background-color: #333;
- color: #fff;
- padding: 20px 0;
- }
- header nav ul {
- list-style-type: none;
- margin: 0;
- padding: 0;
- }
- header nav ul li {
- display: inline;
- margin-right: 20px;
- }
- a {
- color: red;
- text-decoration: none;
- cursor: pointer;
- font-style: italic;
- }
- .section {
- padding: 1em 0;
- }
- section h2 {
- margin-bottom: 1em;
- }
- footer {
- background-color: #333;
- color: #fff;
- padding: 20px 0;
- text-align: center;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement