Advertisement
Hasli4

Untitled

Feb 3rd, 2025
11
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 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. header {
  23. width: 100%;
  24. border-radius: 8px;
  25. padding: 2em 2em;
  26. box-sizing: border-box;
  27. display: flex;
  28. align-items: center;
  29. justify-content: center;
  30. gap: 16px;
  31. border: 1px solid #eaeaea;
  32. box-shadow: 2px 2px 10px 2px #eaeaea;
  33. position: fixed;
  34. top: 0;
  35. background: white;
  36. }
  37.  
  38. main {
  39. display: flex;
  40. flex-direction: column;
  41. align-items: center;
  42. margin-top: 5em;
  43. }
  44.  
  45. main h1 {
  46. margin-top: 1.5em;
  47. }
  48.  
  49. section {
  50. border: 1px solid #eaeaea;
  51. box-shadow: 2px 2px 10px 2px #eaeaea;
  52. width: 50vw;
  53. border-radius: 8px;
  54. padding: 1em 2em;
  55. box-sizing: border-box;
  56. color: rgb(167, 167, 167);
  57. text-decoration: italic;
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement