Compare commits
2 Commits
master
...
cosmopet-a
Author | SHA1 | Date |
---|---|---|
|
942c9a0896 | 4 months ago |
|
6f1ca3924c | 4 months ago |
@ -1,16 +1,120 @@ |
|||||||
/* Переменные, шрифты, UI kit */ |
@font-face { |
||||||
|
font-family: "Craftwork Grotest"; |
||||||
|
src: url('../fonts/Craftwork_Grotesk_Trial/CraftworkGrotesk-Regular.ttf'); |
||||||
|
font-weight: 400; |
||||||
|
} |
||||||
|
|
||||||
|
@font-face { |
||||||
|
font-family: "Craftwork Grotest"; |
||||||
|
src: url('../fonts/Craftwork_Grotesk_Trial/CraftworkGrotesk-Medium.ttf'); |
||||||
|
font-weight: 500; |
||||||
|
} |
||||||
|
|
||||||
|
@font-face { |
||||||
|
font-family: "Craftwork Grotest"; |
||||||
|
src: url('../fonts/Craftwork_Grotesk_Trial/CraftworkGrotesk-SemiBold.ttf'); |
||||||
|
font-weight: 600; |
||||||
|
} |
||||||
|
|
||||||
/* |
@font-face { |
||||||
|
font-family: "Craftwork Grotest"; |
||||||
|
src: url('../fonts/Craftwork_Grotesk_Trial/CraftworkGrotesk-Bold.ttf'); |
||||||
|
font-weight: 700; |
||||||
|
} |
||||||
|
|
||||||
ШАБЛОН использования глобальных переменных: |
@font-face { |
||||||
|
font-family: "Abel"; |
||||||
|
src: url('../fonts/Abel/Abel-Regular.ttf'); |
||||||
|
font-weight: 400; |
||||||
|
} |
||||||
|
|
||||||
:root { |
:root { |
||||||
--main-text: #e1667c; |
/* Colors */ |
||||||
--main-color: #8da6cb; |
--radial: radial-gradient(261.43% 263.03% at 124% -28.000000000000004%,rgb(15, 88, 129),rgb(30, 164, 156) 36.979%,rgb(118, 206, 117) 66.667%,rgb(236, 243, 159) 91.146%); |
||||||
--font-family: "Craftwork Grotesk", sans-serif; |
--accent-1: radial-gradient(142.43% 141.42% at 100% 0%, #188892 0%, #1EA49C 45%, #76CE75 90%, #BBE38D 100%); |
||||||
|
--accent-2: radial-gradient(2700.48% 141.42% at 100% 0%,rgb(122, 217, 231),rgb(126, 231, 225) 25%,rgb(181, 228, 180) 80%,rgb(215, 238, 170) 100%); |
||||||
|
--accent-3: linear-gradient(6deg, rgb(244, 66, 66) 7.584%,rgb(86, 158, 240) 72.371%); |
||||||
|
--linear: linear-gradient(-7.39deg, rgb(244, 241, 240) 23.643%,rgba(244, 241, 240, 0.3) 59.827%); |
||||||
|
--btn-bg: radial-gradient(100% 174.56% at 100% 0%, #7AD9E7 0%, #7EE7E1 25%, #B5E4B4 80%, #D7EEAA 100%); |
||||||
|
|
||||||
|
|
||||||
|
--main_white: #FFFFFF; |
||||||
|
--creme-white: #F4F1F0; |
||||||
|
--grey-f5: #F5F5F5; |
||||||
|
--main_black: #121212; |
||||||
|
--grey-black: #121212; |
||||||
|
--bg-light-grey: #F5F5F5; |
||||||
|
--interface_title: #333333; |
||||||
|
--interface_hover: #666666; |
||||||
|
--orange_80: #FFDF99; |
||||||
|
--green_90: #D9FFCC; |
||||||
|
--green-dark: #76CE75; |
||||||
|
--violet_90: #E7CAFF; |
||||||
|
--blue_90: #CCE2FF; |
||||||
|
--background: #F4F1F0; |
||||||
|
--placeholder: #999999; |
||||||
|
/* Fonts */ |
||||||
|
--font-craftwork: 'Craftwork Grotest', serif; |
||||||
|
--font-abel: 'Abel', serif; |
||||||
|
} |
||||||
|
|
||||||
|
body { |
||||||
|
background: var(--radial); |
||||||
|
font-family: var(--font-craftwork); |
||||||
|
font-weight: 500; |
||||||
} |
} |
||||||
|
|
||||||
*/ |
.container { |
||||||
|
max-width: 1232px; |
||||||
|
margin: 0 auto; |
||||||
|
|
||||||
|
@media (max-width: 1264px) { |
||||||
|
max-width: calc(100% - 32px); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
.form-inp { |
||||||
|
height: 48px; |
||||||
|
width: 100%; |
||||||
|
border: 1px solid var(--placeholder); |
||||||
|
border-radius: 20px; |
||||||
|
background: var(--main_white); |
||||||
|
padding: 0 16px; |
||||||
|
color: var(--main_black); |
||||||
|
font-size: 20px; |
||||||
|
font-weight: 400; |
||||||
|
line-height: 24px; |
||||||
|
font-family: var(--font-craftwork); |
||||||
|
} |
||||||
|
|
||||||
|
.form-inp::placeholder { |
||||||
|
color: var(--placeholder); |
||||||
|
} |
||||||
|
|
||||||
|
.form-inp:hover, |
||||||
|
.form-inp:focus { |
||||||
|
border-color: var(--main_black); |
||||||
|
} |
||||||
|
|
||||||
|
.form-textarea { |
||||||
|
height: 96px; |
||||||
|
width: 100%; |
||||||
|
resize: none; |
||||||
|
background: var(--main_white); |
||||||
|
border: 1px solid var(--placeholder); |
||||||
|
padding: 12px 16px; |
||||||
|
border-radius: 20px; |
||||||
|
color: var(--main_black); |
||||||
|
font-size: 20px; |
||||||
|
line-height: 24px; |
||||||
|
font-family: var(--font-craftwork); |
||||||
|
} |
||||||
|
|
||||||
|
.form-textarea::placeholder { |
||||||
|
color: var(--placeholder); |
||||||
|
} |
||||||
|
|
||||||
|
.form-textarea:hover, |
||||||
|
.form-textarea:focus { |
||||||
|
border-color: var(--main_black); |
||||||
|
} |
||||||
|
@ -1,18 +1,543 @@ |
|||||||
/* Основные стили для компьютера */ |
/* Основные стили для компьютера */ |
||||||
|
|
||||||
|
/* Header */ |
||||||
|
.header { |
||||||
|
background: var(--main_white); |
||||||
|
border-bottom: 1px solid var(--interface_title); |
||||||
|
position: fixed; |
||||||
|
top: 0; |
||||||
|
left: 0; |
||||||
|
width: 100%; |
||||||
|
z-index: 4; |
||||||
|
} |
||||||
|
|
||||||
|
.header-container { |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
justify-content: space-between; |
||||||
|
padding: 16px 0; |
||||||
|
} |
||||||
|
|
||||||
/* писать сюда... */ |
.header-bars { |
||||||
|
display: none; |
||||||
|
} |
||||||
|
|
||||||
|
.header-logo { |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
gap: 8px; |
||||||
|
} |
||||||
|
|
||||||
|
.header-logo span { |
||||||
|
color: var(---main_black); |
||||||
|
font-size: 20px; |
||||||
|
text-transform: uppercase; |
||||||
|
} |
||||||
|
|
||||||
|
.header-navs { |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
gap: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.header-navs__link { |
||||||
|
padding: 8px 12px; |
||||||
|
font-size: 16px; |
||||||
|
font-weight: bold; |
||||||
|
text-transform: uppercase; |
||||||
|
line-height: 20px; |
||||||
|
} |
||||||
|
|
||||||
|
.header-accordion {} |
||||||
|
|
||||||
|
.header-accordion__btn { |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
gap: 4px; |
||||||
|
padding: 8px 12px; |
||||||
|
border-radius: 24px; |
||||||
|
background: var(--accent-2); |
||||||
|
cursor: pointer; |
||||||
|
user-select: none; |
||||||
|
font-size: 16px; |
||||||
|
font-weight: bold; |
||||||
|
line-height: 20px; |
||||||
|
color: var(---main_black); |
||||||
|
} |
||||||
|
|
||||||
|
.header-right { |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
gap: 8px; |
||||||
|
} |
||||||
|
|
||||||
|
.header-lang__btn { |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
cursor: pointer; |
||||||
|
user-select: none; |
||||||
|
gap: 4px; |
||||||
|
padding: 12px 15px; |
||||||
|
color: var(---main_black); |
||||||
|
font-size: 16px; |
||||||
|
font-weight: bold; |
||||||
|
line-height: 20px; |
||||||
|
} |
||||||
|
|
||||||
/* Стили для лептопов */ |
/* Header end */ |
||||||
/* @media only screen and (min-width: 992px) and (max-width: 1400px) { |
|
||||||
|
|
||||||
} */ |
/* Footer */ |
||||||
|
.footer { |
||||||
|
background: var(--main_black); |
||||||
|
padding: 40px 0 38px; |
||||||
|
color: var(--main_white); |
||||||
|
} |
||||||
|
|
||||||
|
.footer-top { |
||||||
|
display: flex; |
||||||
|
align-items: stretch; |
||||||
|
justify-content: space-between; |
||||||
|
gap: 48px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-top .logo { |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
gap: 10px; |
||||||
|
font-size: 20px; |
||||||
|
font-weight: 500; |
||||||
|
text-transform: uppercase; |
||||||
|
background: var(--accent-1); |
||||||
|
color: transparent; |
||||||
|
-webkit-background-clip: text; |
||||||
|
background-clip: text; |
||||||
|
margin-bottom: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-content__address { |
||||||
|
font-size: 24px; |
||||||
|
font-weight: 500; |
||||||
|
line-height: 32px; |
||||||
|
margin-bottom: 32px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-content { |
||||||
|
width: 100%; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-content ul { |
||||||
|
display: flex; |
||||||
|
flex-direction: column; |
||||||
|
gap: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-content ul li { |
||||||
|
display: flex; |
||||||
|
flex-direction: column; |
||||||
|
gap: 4px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-content ul p { |
||||||
|
font-size: 16px; |
||||||
|
font-weight: bold; |
||||||
|
line-height: 20px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-content ul a { |
||||||
|
font-size: 24px; |
||||||
|
font-weight: 500; |
||||||
|
line-height: 32px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-content__wrap { |
||||||
|
display: flex; |
||||||
|
align-items: flex-end; |
||||||
|
justify-content: space-between; |
||||||
|
width: 100%; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-top__link { |
||||||
|
display: flex; |
||||||
|
flex-direction: column; |
||||||
|
gap: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-top__link .link-black { |
||||||
|
padding: 7px 15px; |
||||||
|
color: var(--main_white); |
||||||
|
font-size: 24px; |
||||||
|
line-height: 32px; |
||||||
|
font-weight: 500; |
||||||
|
white-space: nowrap; |
||||||
|
border: 1px solid var(--main_white); |
||||||
|
border-radius: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-top__link .link-white { |
||||||
|
width: 100%; |
||||||
|
text-align: center; |
||||||
|
background: var(--main_white); |
||||||
|
color: var(--main_black); |
||||||
|
font-size: 20px; |
||||||
|
font-weight: 600; |
||||||
|
line-height: 24px; |
||||||
|
padding: 12px; |
||||||
|
border-radius: 20px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-contact { |
||||||
|
width: 364px; |
||||||
|
flex-shrink: 0; |
||||||
|
background: var(--accent-1); |
||||||
|
border-radius: 24px; |
||||||
|
padding: 24px; |
||||||
|
display: flex; |
||||||
|
flex-direction: column; |
||||||
|
gap: 16px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-contact__title { |
||||||
|
color: var(--main_black); |
||||||
|
font-size: 24px; |
||||||
|
font-weight: 500; |
||||||
|
line-height: 32px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-contact__submit { |
||||||
|
width: 100%; |
||||||
|
text-align: center; |
||||||
|
height: 48px; |
||||||
|
border-radius: 16px; |
||||||
|
background: var(--main_black); |
||||||
|
font-size: 20px; |
||||||
|
font-weight: 600; |
||||||
|
line-height: 24px; |
||||||
|
color: var(--main_white); |
||||||
|
} |
||||||
|
|
||||||
|
.footer-bottom { |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
justify-content: space-between; |
||||||
|
padding-top: 17px; |
||||||
|
margin-top: 19px; |
||||||
|
border-top: 1px solid var(--main_white); |
||||||
|
} |
||||||
|
|
||||||
|
.footer-network { |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
gap: 32px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-bottom a { |
||||||
|
font-size: 16px; |
||||||
|
line-height: 20px; |
||||||
|
font-weight: 500; |
||||||
|
color: var(--main_white); |
||||||
|
opacity: 0.6; |
||||||
|
text-decoration: underline; |
||||||
|
} |
||||||
|
/* Footer end */ |
||||||
|
|
||||||
|
|
||||||
|
/* Where home */ |
||||||
|
.where-home { |
||||||
|
padding: 162px 0 37px; |
||||||
|
color: var(--background); |
||||||
|
} |
||||||
|
|
||||||
|
.where-home h1 { |
||||||
|
font-size: 82px; |
||||||
|
font-weight: bold; |
||||||
|
line-height: 96px; |
||||||
|
margin-bottom: 41px; |
||||||
|
text-transform: uppercase; |
||||||
|
} |
||||||
|
|
||||||
|
.where-home p { |
||||||
|
max-width: 928px; |
||||||
|
color: #FFF; |
||||||
|
font-size: 36px; |
||||||
|
font-weight: bold; |
||||||
|
line-height: 40px; |
||||||
|
text-transform: uppercase; |
||||||
|
} |
||||||
|
/* Where home end */ |
||||||
|
|
||||||
|
/* Find us */ |
||||||
|
.find-us { |
||||||
|
color: var(--background); |
||||||
|
padding-bottom: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.find-us h2 { |
||||||
|
padding: 10px 0; |
||||||
|
font-size: 36px; |
||||||
|
font-weight: bold; |
||||||
|
line-height: 40px; |
||||||
|
text-transform: uppercase; |
||||||
|
margin-bottom: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.find-us ul { |
||||||
|
display: grid; |
||||||
|
grid-template-columns: repeat(2, minmax(0, 1fr)); |
||||||
|
gap: 36px; |
||||||
|
} |
||||||
|
|
||||||
|
.find-us h3 { |
||||||
|
font-size: 24px; |
||||||
|
font-weight: bold; |
||||||
|
line-height: 28px; |
||||||
|
margin-bottom: 8px; |
||||||
|
text-transform: uppercase; |
||||||
|
} |
||||||
|
|
||||||
|
.find-us p { |
||||||
|
font-size: 24px; |
||||||
|
font-weight: 500; |
||||||
|
line-height: 32px; |
||||||
|
} |
||||||
|
/* Find us end */ |
||||||
|
|
||||||
|
/* Location */ |
||||||
|
.location { |
||||||
|
padding-bottom: 35px; |
||||||
|
} |
||||||
|
|
||||||
|
.location h2 { |
||||||
|
padding: 10px 0; |
||||||
|
margin-bottom: 37px; |
||||||
|
text-align: right; |
||||||
|
font-size: 36px; |
||||||
|
font-weight: bold; |
||||||
|
line-height: 40px; |
||||||
|
text-transform: uppercase; |
||||||
|
color: var(--main_white); |
||||||
|
} |
||||||
|
|
||||||
|
.location iframe { |
||||||
|
height: 783px; |
||||||
|
width: 100%; |
||||||
|
border-radius: 64px; |
||||||
|
} |
||||||
|
/* Location end */ |
||||||
|
|
||||||
|
/* Sell form */ |
||||||
|
.sell-form { |
||||||
|
padding-bottom: 31px; |
||||||
|
} |
||||||
|
|
||||||
|
.sell-form__container { |
||||||
|
background: var(--main_white); |
||||||
|
border-radius: 64px; |
||||||
|
padding: 64px 105px 38px; |
||||||
|
color: var(--grey-black); |
||||||
|
display: flex; |
||||||
|
flex-direction: column; |
||||||
|
gap: 48px; |
||||||
|
} |
||||||
|
|
||||||
|
.sell-form h2 { |
||||||
|
font-size: 36px; |
||||||
|
font-weight: bold; |
||||||
|
line-height: 40px; |
||||||
|
text-transform: uppercase; |
||||||
|
} |
||||||
|
|
||||||
|
.sell-form p { |
||||||
|
text-transform: uppercase; |
||||||
|
font-size: 24px; |
||||||
|
font-weight: bold; |
||||||
|
line-height: 28px; |
||||||
|
} |
||||||
|
|
||||||
|
.sell-form form { |
||||||
|
display: flex; |
||||||
|
flex-direction: column; |
||||||
|
align-items: center; |
||||||
|
gap: 16px; |
||||||
|
} |
||||||
|
|
||||||
|
.sell-form form button { |
||||||
|
background: var(--main_black); |
||||||
|
padding: 11px 70px; |
||||||
|
color: var(--main_white); |
||||||
|
text-transform: uppercase; |
||||||
|
border-radius: 16px; |
||||||
|
font-size: 20px; |
||||||
|
font-weight: 600; |
||||||
|
line-height: 24px; |
||||||
|
border: 1px solid var(--main_black); |
||||||
|
} |
||||||
|
|
||||||
|
.sell-form form button:hover { |
||||||
|
background: var(--main_white); |
||||||
|
color: var(--main_black); |
||||||
|
} |
||||||
|
/* Sell form end */ |
||||||
|
|
||||||
|
/* Breadcrumb */ |
||||||
|
.breadcrumb { |
||||||
|
padding: 108px 0 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.breadcrumb .container { |
||||||
|
color: var(--main_white); |
||||||
|
font-size: 14px; |
||||||
|
font-weight: 500; |
||||||
|
line-height: 16px; |
||||||
|
} |
||||||
|
|
||||||
|
.breadcrumb a { |
||||||
|
display: inline; |
||||||
|
} |
||||||
|
/* Breadcrumb end */ |
||||||
|
|
||||||
|
/* Authors */ |
||||||
|
.authors { |
||||||
|
padding-bottom: 120px; |
||||||
|
} |
||||||
|
|
||||||
|
.authors h2 { |
||||||
|
font-weight: bold; |
||||||
|
font-size: 64px; |
||||||
|
line-height: 120%; |
||||||
|
color: white; |
||||||
|
text-transform: uppercase; |
||||||
|
margin-bottom: 36px; |
||||||
|
} |
||||||
|
|
||||||
|
.authors ul { |
||||||
|
display: flex; |
||||||
|
flex-wrap: wrap; |
||||||
|
align-items: stretch; |
||||||
|
justify-content: center; |
||||||
|
gap: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.authors li { |
||||||
|
background: #F5F5F5; |
||||||
|
border-radius: 48px; |
||||||
|
display: flex; |
||||||
|
flex-direction: column; |
||||||
|
align-items: center; |
||||||
|
text-align: center; |
||||||
|
width: calc(100% / 3 - 16px); |
||||||
|
} |
||||||
|
|
||||||
|
.authors a { |
||||||
|
padding: 52px 17px 57px; |
||||||
|
width: 100%; |
||||||
|
height: 100%; |
||||||
|
display: flex; |
||||||
|
flex-direction: column; |
||||||
|
align-items: center; |
||||||
|
} |
||||||
|
|
||||||
|
.authors .main-img { |
||||||
|
width: 200px; |
||||||
|
height: 200px; |
||||||
|
border-radius: 50%; |
||||||
|
overflow: hidden; |
||||||
|
flex-shrink: 0; |
||||||
|
margin-bottom: 31px; |
||||||
|
} |
||||||
|
|
||||||
|
.authors .main-img img { |
||||||
|
width: 100%; |
||||||
|
height: 100%; |
||||||
|
object-fit: cover; |
||||||
|
} |
||||||
|
|
||||||
|
.authors-name { |
||||||
|
font-size: 24px; |
||||||
|
font-weight: bold; |
||||||
|
text-transform: uppercase; |
||||||
|
line-height: 28px; |
||||||
|
color: #121212; |
||||||
|
margin-bottom: 5px; |
||||||
|
} |
||||||
|
|
||||||
|
.authors-type { |
||||||
|
color: #121212; |
||||||
|
font-size: 24px; |
||||||
|
font-weight: 500; |
||||||
|
line-height: 32px; |
||||||
|
margin-bottom: 31px; |
||||||
|
} |
||||||
|
|
||||||
|
.authors p { |
||||||
|
color: #666666; |
||||||
|
font-weight: 500; |
||||||
|
font-size: 20px; |
||||||
|
line-height: 24px; |
||||||
|
} |
||||||
|
/* Authors end */ |
||||||
|
|
||||||
|
/* Author */ |
||||||
|
.author { |
||||||
|
padding-bottom: 36px; |
||||||
|
} |
||||||
|
|
||||||
|
.author-content { |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
gap: 31px; |
||||||
|
margin-bottom: 17.5px; |
||||||
|
} |
||||||
|
|
||||||
|
.author .main-img { |
||||||
|
width: 278px; |
||||||
|
height: 278px; |
||||||
|
flex-shrink: 0; |
||||||
|
border-radius: 48px; |
||||||
|
overflow: hidden; |
||||||
|
} |
||||||
|
|
||||||
|
.author .main-img img { |
||||||
|
width: 100%; |
||||||
|
height: 100%; |
||||||
|
object-fit: cover; |
||||||
|
} |
||||||
|
|
||||||
|
.author-name { |
||||||
|
font-size: 24px; |
||||||
|
font-weight: bold; |
||||||
|
line-height: 28px; |
||||||
|
color: white; |
||||||
|
margin-bottom: 5px; |
||||||
|
text-transform: uppercase; |
||||||
|
} |
||||||
|
|
||||||
|
.author-type { |
||||||
|
font-size: 24px; |
||||||
|
font-weight: 500; |
||||||
|
line-height: 32px; |
||||||
|
color: white; |
||||||
|
margin-bottom: 5px; |
||||||
|
} |
||||||
|
|
||||||
|
.author-description { |
||||||
|
font-size: 24px; |
||||||
|
font-weight: 500; |
||||||
|
line-height: 32px; |
||||||
|
color: white; |
||||||
|
margin-bottom: 45px; |
||||||
|
} |
||||||
|
|
||||||
|
.author p { |
||||||
|
font-size: 20px; |
||||||
|
font-weight: 500; |
||||||
|
line-height: 24px; |
||||||
|
color: white; |
||||||
|
} |
||||||
|
|
||||||
|
.author h2 { |
||||||
|
font-size: 64px; |
||||||
|
font-weight: bold; |
||||||
|
line-height: 120%; |
||||||
|
color: white; |
||||||
|
} |
||||||
|
/* Author end */ |
@ -1,5 +1,212 @@ |
|||||||
/* Стили для мобильных устройств */ |
/* Стили для мобильных устройств */ |
||||||
@media only screen and (max-width: 576px) { |
@media only screen and (max-width: 576px) { |
||||||
|
.anons-best__title { |
||||||
|
font-size: 26px; |
||||||
|
line-height: 32px; |
||||||
|
margin-bottom: 12px; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-best__card { |
||||||
|
padding-top: 205px; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-best__card .main-img { |
||||||
|
height: 300px; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-best__card-body { |
||||||
|
padding: 20px 17px; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-best__card-body__title { |
||||||
|
font-size: 20px; |
||||||
|
line-height: 24px; |
||||||
|
margin-bottom: 16px; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-best__card.light .main-img { |
||||||
|
height: 197px; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-best__card.light .anons-best__card-body__title { |
||||||
|
font-size: 20px; |
||||||
|
line-height: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.editorial-card { |
||||||
|
flex-direction: column; |
||||||
|
border-radius: 30px; |
||||||
|
position: relative; |
||||||
|
} |
||||||
|
|
||||||
|
.editorial-card .main-img { |
||||||
|
width: 100%; |
||||||
|
height: 203px; |
||||||
|
} |
||||||
|
|
||||||
|
.editorial-card__content { |
||||||
|
padding: 17px 13px 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.editorial-card__content-alerts { |
||||||
|
position: absolute; |
||||||
|
top: 13px; |
||||||
|
left: 8px; |
||||||
|
width: calc(100% - 16px); |
||||||
|
} |
||||||
|
|
||||||
|
.editorial-card__content-title { |
||||||
|
font-size: 20px; |
||||||
|
line-height: 24px; |
||||||
|
margin-bottom: 17px; |
||||||
|
} |
||||||
|
|
||||||
|
.editorial-card__content-data { |
||||||
|
gap: 5px 16px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer { |
||||||
|
padding: 24px 0 58px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-top { |
||||||
|
align-items: flex-start; |
||||||
|
text-align: left; |
||||||
|
gap: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-content__wrap { |
||||||
|
align-items: flex-start; |
||||||
|
gap: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-content { |
||||||
|
align-items: flex-start; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-content .logo { |
||||||
|
font-size: 20px; |
||||||
|
margin-bottom: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-content__address { |
||||||
|
font-size: 18px; |
||||||
|
line-height: 24px; |
||||||
|
margin-bottom: 32px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-content ul { |
||||||
|
gap: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-content ul p { |
||||||
|
font-size: 16px; |
||||||
|
line-height: 20px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-content ul a { |
||||||
|
font-size: 24px; |
||||||
|
line-height: 32px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-top__link .link-white { |
||||||
|
display: none; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-contact { |
||||||
|
width: 100%; |
||||||
|
padding: 16px; |
||||||
|
border-radius: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-contact__title { |
||||||
|
color: var(--main_white); |
||||||
|
} |
||||||
|
|
||||||
|
.footer-bottom { |
||||||
|
margin-top: 0; |
||||||
|
padding-top: 24px; |
||||||
|
border: 0; |
||||||
|
align-items: flex-start; |
||||||
|
gap: 17px; |
||||||
|
} |
||||||
|
|
||||||
|
.authors { |
||||||
|
padding-bottom: 138px; |
||||||
|
} |
||||||
|
|
||||||
|
.authors h2 { |
||||||
|
font-size: 32px; |
||||||
|
line-height: 38px; |
||||||
|
margin-bottom: 15px; |
||||||
|
} |
||||||
|
|
||||||
|
.authors li { |
||||||
|
border-radius: 24px; |
||||||
|
width: 100%; |
||||||
|
} |
||||||
|
|
||||||
|
.authors a { |
||||||
|
padding: 32px 17px 52px; |
||||||
|
} |
||||||
|
|
||||||
|
.authors .main-img { |
||||||
|
width: 180px; |
||||||
|
height: 180px; |
||||||
|
margin-bottom: 20px; |
||||||
|
} |
||||||
|
|
||||||
|
.authors-name { |
||||||
|
font-size: 20px; |
||||||
|
line-height: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.authors-type { |
||||||
|
font-size: 18px; |
||||||
|
line-height: 24px; |
||||||
|
margin-bottom: 20px; |
||||||
|
} |
||||||
|
|
||||||
|
.authors p { |
||||||
|
font-size: 16px; |
||||||
|
line-height: 20px; |
||||||
|
} |
||||||
|
|
||||||
|
.author { |
||||||
|
padding-bottom: 15px; |
||||||
|
} |
||||||
|
|
||||||
|
.author-content { |
||||||
|
margin-bottom: 23px; |
||||||
|
} |
||||||
|
|
||||||
|
.author .main-img { |
||||||
|
width: 100%; |
||||||
|
} |
||||||
|
|
||||||
|
.author h2 { |
||||||
|
font-size: 32px; |
||||||
|
line-height: 38px; |
||||||
|
} |
||||||
|
|
||||||
|
.author-name { |
||||||
|
font-size: 20px; |
||||||
|
line-height: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.author-type { |
||||||
|
font-size: 18px; |
||||||
|
line-height: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.author-description { |
||||||
|
font-size: 18px; |
||||||
|
line-height: 24px; |
||||||
|
margin-bottom: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.author p { |
||||||
|
font-size: 16px; |
||||||
|
line-height: 20px; |
||||||
|
} |
||||||
} |
} |
@ -0,0 +1,78 @@ |
|||||||
|
* { |
||||||
|
padding: 0; |
||||||
|
margin: 0; |
||||||
|
box-sizing: border-box; |
||||||
|
-webkit-tap-highlight-color: transparent !important; |
||||||
|
} |
||||||
|
|
||||||
|
a { |
||||||
|
text-decoration: none; |
||||||
|
color: inherit; |
||||||
|
display: inline-block; |
||||||
|
cursor: pointer; |
||||||
|
} |
||||||
|
|
||||||
|
img { |
||||||
|
max-width: 100%; |
||||||
|
} |
||||||
|
|
||||||
|
span, |
||||||
|
label { |
||||||
|
display: inline-block; |
||||||
|
} |
||||||
|
|
||||||
|
html { |
||||||
|
scroll-behavior: smooth; |
||||||
|
} |
||||||
|
|
||||||
|
input, |
||||||
|
textarea { |
||||||
|
outline: none; |
||||||
|
border: 0; |
||||||
|
background: transparent; |
||||||
|
} |
||||||
|
|
||||||
|
button, |
||||||
|
select { |
||||||
|
border: none; |
||||||
|
cursor: pointer; |
||||||
|
background: transparent; |
||||||
|
outline: 0; |
||||||
|
} |
||||||
|
|
||||||
|
address { |
||||||
|
font-style: normal; |
||||||
|
} |
||||||
|
|
||||||
|
.wrapper { |
||||||
|
width: 100%; |
||||||
|
overflow: hidden; |
||||||
|
min-height: 100svh; |
||||||
|
} |
||||||
|
|
||||||
|
ul, |
||||||
|
ol, |
||||||
|
dl { |
||||||
|
list-style: none; |
||||||
|
padding: 0; |
||||||
|
margin: 0; |
||||||
|
} |
||||||
|
|
||||||
|
p, |
||||||
|
h1, |
||||||
|
h2, |
||||||
|
h3, |
||||||
|
h4, |
||||||
|
h5, |
||||||
|
h6 { |
||||||
|
padding: 0; |
||||||
|
margin: 0; |
||||||
|
font-weight: 500; |
||||||
|
} |
||||||
|
|
||||||
|
input[type=number]::-webkit-inner-spin-button, |
||||||
|
input[type=number]::-webkit-outer-spin-button { |
||||||
|
-webkit-appearance: none; |
||||||
|
-moz-appearance: none; |
||||||
|
margin: 0; |
||||||
|
} |
@ -1,5 +1,152 @@ |
|||||||
/* Стили для планшетов */ |
/* Стили для планшетов */ |
||||||
@media only screen and (max-width: 992px) { |
@media only screen and (max-width: 992px) { |
||||||
|
.header-navs { |
||||||
|
display: none; |
||||||
|
} |
||||||
|
|
||||||
|
.header-container { |
||||||
|
height: 56px; |
||||||
|
padding: 0; |
||||||
|
} |
||||||
|
|
||||||
|
.header-bars { |
||||||
|
display: flex; |
||||||
|
align-items: center; |
||||||
|
justify-content: center; |
||||||
|
} |
||||||
|
|
||||||
|
.header-logo { |
||||||
|
font-size: 16px; |
||||||
|
line-height: 20px; |
||||||
|
gap: 8px; |
||||||
|
} |
||||||
|
|
||||||
|
.header-logo img { |
||||||
|
width: 31px; |
||||||
|
flex-shrink: 0; |
||||||
|
} |
||||||
|
|
||||||
|
.header-lang { |
||||||
|
display: none; |
||||||
|
} |
||||||
|
|
||||||
|
/* Where home */ |
||||||
|
.where-home { |
||||||
|
padding: 92px 0 36px; |
||||||
|
} |
||||||
|
|
||||||
|
.where-home h1 { |
||||||
|
font-size: 32px; |
||||||
|
line-height: 38px; |
||||||
|
margin-bottom: 15px; |
||||||
|
} |
||||||
|
|
||||||
|
.where-home p { |
||||||
|
font-size: 20px; |
||||||
|
line-height: 24px; |
||||||
|
} |
||||||
|
/* Where home end */ |
||||||
|
|
||||||
|
/* Find us */ |
||||||
|
.find-us { |
||||||
|
padding-bottom: 36px; |
||||||
|
} |
||||||
|
|
||||||
|
.find-us h2 { |
||||||
|
font-size: 26px; |
||||||
|
line-height: 32px; |
||||||
|
margin-bottom: 36px; |
||||||
|
padding: 0; |
||||||
|
} |
||||||
|
|
||||||
|
.find-us ul { |
||||||
|
grid-template-columns: repeat(1, minmax(0, 1fr)); |
||||||
|
gap: 20px; |
||||||
|
} |
||||||
|
|
||||||
|
.find-us h3 { |
||||||
|
font-size: 20px; |
||||||
|
line-height: 24px; |
||||||
|
margin-bottom: 8px; |
||||||
|
} |
||||||
|
|
||||||
|
.find-us p { |
||||||
|
font-size: 18px; |
||||||
|
line-height: 24px; |
||||||
|
} |
||||||
|
/* Find us end */ |
||||||
|
|
||||||
|
/* Location */ |
||||||
|
.location { |
||||||
|
padding-bottom: 36px; |
||||||
|
} |
||||||
|
|
||||||
|
.location h2 { |
||||||
|
font-size: 26px; |
||||||
|
line-height: 32px; |
||||||
|
margin-bottom: 36px; |
||||||
|
padding: 0; |
||||||
|
} |
||||||
|
|
||||||
|
.location iframe { |
||||||
|
height: 560px; |
||||||
|
width: calc(100% + 32px); |
||||||
|
margin-left: -16px; |
||||||
|
border-radius: 24px; |
||||||
|
} |
||||||
|
/* Location end */ |
||||||
|
|
||||||
|
/* Sell form */ |
||||||
|
.sell-form { |
||||||
|
padding-bottom: 36px; |
||||||
|
} |
||||||
|
|
||||||
|
.sell-form__container { |
||||||
|
max-width: 100%; |
||||||
|
border-radius: 24px; |
||||||
|
padding: 36px 16px; |
||||||
|
gap: 18px; |
||||||
|
} |
||||||
|
|
||||||
|
.sell-form h2 { |
||||||
|
font-size: 26px; |
||||||
|
line-height: 32px; |
||||||
|
} |
||||||
|
|
||||||
|
.sell-form p { |
||||||
|
font-size: 20px; |
||||||
|
line-height: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.sell-form textarea { |
||||||
|
height: 120px; |
||||||
|
} |
||||||
|
/* Sell form end */ |
||||||
|
|
||||||
|
.authors h2 { |
||||||
|
font-size: 48px; |
||||||
|
margin-bottom: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.authors li { |
||||||
|
border-radius: 32px; |
||||||
|
width: calc(50% - 12px); |
||||||
|
} |
||||||
|
|
||||||
|
.authors .main-img { |
||||||
|
margin-bottom: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.author { |
||||||
|
padding-bottom: 24px; |
||||||
|
} |
||||||
|
|
||||||
|
.author h2 { |
||||||
|
font-size: 48px; |
||||||
|
} |
||||||
|
|
||||||
|
.author-content { |
||||||
|
flex-direction: column; |
||||||
|
align-items: flex-start; |
||||||
|
} |
||||||
} |
} |
@ -0,0 +1,44 @@ |
|||||||
|
@media (max-width: 1200px) { |
||||||
|
.header-navs { |
||||||
|
gap: 12px; |
||||||
|
} |
||||||
|
|
||||||
|
.header-navs__link { |
||||||
|
font-size: 14px; |
||||||
|
} |
||||||
|
|
||||||
|
.header-right { |
||||||
|
gap: 4px; |
||||||
|
} |
||||||
|
|
||||||
|
.anons-article__card-wrap { |
||||||
|
grid-template-columns: repeat(2, minmax(0, 1fr)); |
||||||
|
} |
||||||
|
|
||||||
|
.editorial-card__wrap { |
||||||
|
grid-template-columns: repeat(1, minmax(0, 1fr)); |
||||||
|
} |
||||||
|
|
||||||
|
.footer-top { |
||||||
|
flex-direction: column; |
||||||
|
align-items: center; |
||||||
|
text-align: center; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-content { |
||||||
|
display: flex; |
||||||
|
flex-direction: column; |
||||||
|
align-items: center; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-content__wrap { |
||||||
|
flex-direction: column; |
||||||
|
align-items: center; |
||||||
|
gap: 48px; |
||||||
|
} |
||||||
|
|
||||||
|
.footer-bottom { |
||||||
|
flex-direction: column; |
||||||
|
gap: 24px; |
||||||
|
} |
||||||
|
} |
@ -1,2 +0,0 @@ |
|||||||
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none} |
|
||||||
/*# sourceMappingURL=normalize.min.css.map */ |
|
@ -1 +0,0 @@ |
|||||||
*{padding:0;margin:0;border:none}*,::after,::before{box-sizing:border-box}a,a:hover,a:link,a:visited{text-decoration:none}aside,footer,header,legend,main,nav,section{display:block}h1,h2,h3,h4,h5,h6,p{font-size:inherit;font-weight:inherit}ul,ul li{list-style:none}img{vertical-align:top}img,svg{max-width:100%;height:auto}address{font-style:normal}button,input,select,textarea{font-family:inherit;font-size:inherit;color:inherit;background-color:transparent}input::-ms-clear{display:none}button,input[type=submit]{display:inline-block;box-shadow:none;background:0 0;cursor:pointer}button:active,button:focus,input:active,input:focus{outline:0}button::-moz-focus-inner{padding:0;border:0}label{cursor:pointer} |
|
After Width: | Height: | Size: 225 B |
After Width: | Height: | Size: 216 KiB |
After Width: | Height: | Size: 167 KiB |
After Width: | Height: | Size: 261 KiB |
After Width: | Height: | Size: 261 KiB |
After Width: | Height: | Size: 247 KiB |
After Width: | Height: | Size: 429 KiB |
After Width: | Height: | Size: 458 B |
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 911 B |
After Width: | Height: | Size: 676 B |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 439 B |
After Width: | Height: | Size: 391 B |
After Width: | Height: | Size: 389 B |
After Width: | Height: | Size: 391 B |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 246 B |
After Width: | Height: | Size: 929 B |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 246 B |
After Width: | Height: | Size: 244 B |
After Width: | Height: | Size: 246 B |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 458 B |
After Width: | Height: | Size: 460 B |
After Width: | Height: | Size: 1.4 KiB |
@ -0,0 +1,48 @@ |
|||||||
|
const homeSwp = new Swiper('.home-swp .swiper', { |
||||||
|
slidesPerView: 1, |
||||||
|
spaceBetween: 0, |
||||||
|
effect: 'fade', |
||||||
|
loop: true, |
||||||
|
navigation: { |
||||||
|
nextEl: '.home-swp__btn-next', |
||||||
|
prevEl: '.home-swp__btn-prev', |
||||||
|
} |
||||||
|
}) |
||||||
|
|
||||||
|
const textsSwp = new Swiper('.texts-swp .swiper', { |
||||||
|
slidesPerView: 1, |
||||||
|
spaceBetween: 0, |
||||||
|
loop: true, |
||||||
|
effect: 'fade', |
||||||
|
navigation: { |
||||||
|
nextEl: '.texts-swp__next', |
||||||
|
prevEl: '.texts-swp__prev' |
||||||
|
}, |
||||||
|
pagination: { |
||||||
|
el: ".texts-swp__pagination", |
||||||
|
clickable: true, |
||||||
|
} |
||||||
|
}) |
||||||
|
|
||||||
|
// comment
|
||||||
|
let answerbtns = document.querySelectorAll('.answer-btn'); |
||||||
|
let answerbtnicons = document.querySelectorAll('.answer-btn svg'); |
||||||
|
let answerblocks = document.querySelectorAll('.answer-block'); |
||||||
|
|
||||||
|
answerbtns.forEach((answerbtn, index) => { |
||||||
|
answerbtn.addEventListener('click', () => { |
||||||
|
let answerbtnicon = answerbtnicons[index]; |
||||||
|
let answerblock = answerblocks[index]; |
||||||
|
|
||||||
|
answerblock.classList.toggle('active'); |
||||||
|
answerbtnicon.classList.toggle('active'); |
||||||
|
|
||||||
|
let buttonText = answerbtn.querySelector('span'); |
||||||
|
if (buttonText.textContent === 'Ответ') { |
||||||
|
buttonText.textContent = 'Свернуть'; |
||||||
|
} else { |
||||||
|
buttonText.textContent = 'ответ'; |
||||||
|
} |
||||||
|
}); |
||||||
|
}); |
||||||
|
// comment
|
@ -0,0 +1,215 @@ |
|||||||
|
<!DOCTYPE html> |
||||||
|
<html lang="ru"> |
||||||
|
<head> |
||||||
|
<meta charset="UTF-8"> |
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge"> |
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
||||||
|
<title>SEO title</title> |
||||||
|
<meta name="description" content="SEO Description"> |
||||||
|
<link rel="shortcut icon" href="/assets/img/favicon.ico?v=1.0"> |
||||||
|
|
||||||
|
<!-- Link Swiper's CSS --> |
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" /> |
||||||
|
|
||||||
|
<!-- Базовые стили --> |
||||||
|
<link rel="stylesheet" href="/assets/css/gp-style-normalize.css?v=1.0"> |
||||||
|
<link rel="stylesheet" href="/assets/css/gp-style-core.css?v=1.0"> |
||||||
|
<link rel="stylesheet" href="/assets/css/gp-style-desktop.css?v=1.0"> |
||||||
|
<!-- Адаптив --> |
||||||
|
<link rel="stylesheet" media="screen and (min-width: 1400px)" href="/assets/css/gp-style-ultra.css?v=1.0"> |
||||||
|
<link rel="stylesheet" media="screen and (max-width: 1200px)" href="/assets/css/gp-style-xl.css?v=1.0"> |
||||||
|
<link rel="stylesheet" media="screen and (max-width: 992px)" href="/assets/css/gp-style-tablet.css?v=1.0"> |
||||||
|
<link rel="stylesheet" media="screen and (max-width: 576px)" href="/assets/css/gp-style-mobile.css?v=1.0"> |
||||||
|
|
||||||
|
|
||||||
|
<!-- Яндекс.Вебмастер + Google Search Console --> |
||||||
|
<meta name="yandex-verification" content="XXXXXXXXXXXXXXXXX" /> |
||||||
|
<meta name="google-site-verification" content="XXXXXXXXXXXXXXXXX" /> |
||||||
|
<!-- /Яндекс.Вебмастер + Google Search Console --> |
||||||
|
|
||||||
|
<!-- Yandex.Metrika counter --> |
||||||
|
<script type="text/javascript"> |
||||||
|
(function (m, e, t, r, i, k, a) { |
||||||
|
m[i] = m[i] || function () { (m[i].a = m[i].a || []).push(arguments) }; |
||||||
|
m[i].l = 1 * new Date(); |
||||||
|
for (var j = 0; j < document.scripts.length; j++) { if (document.scripts[j].src === r) { return; } } |
||||||
|
k = e.createElement(t), a = e.getElementsByTagName(t)[0], k.async = 1, k.src = r, a.parentNode.insertBefore(k, a) |
||||||
|
}) |
||||||
|
(window, document, "script", "https://mc.yandex.ru/metrika/tag.js", "ym"); |
||||||
|
|
||||||
|
ym(XXXXXX, "init", { // XXXXXX - счетчик |
||||||
|
clickmap: true, |
||||||
|
trackLinks: true, |
||||||
|
accurateTrackBounce: true, |
||||||
|
webvisor: true, |
||||||
|
ecommerce: "dataLayer" |
||||||
|
}); |
||||||
|
</script> |
||||||
|
<noscript> |
||||||
|
<div><img src="https://mc.yandex.ru/watch/85828806" style="position:absolute; left:-9999px;" alt="" /></div> |
||||||
|
</noscript> |
||||||
|
<!-- /Yandex.Metrika counter --> |
||||||
|
|
||||||
|
|
||||||
|
</head> |
||||||
|
<body> |
||||||
|
|
||||||
|
<div class="wrapper"> |
||||||
|
|
||||||
|
<!-- Header --> |
||||||
|
<header class="header"> |
||||||
|
<div class="container header-container"> |
||||||
|
<button class="header-bars"> |
||||||
|
<img src="./assets/img/bars.svg" alt=""> |
||||||
|
</button> |
||||||
|
<a href="/" class="header-logo"> |
||||||
|
<img src="./assets/img/logo.svg" alt=""> |
||||||
|
<span>сosmopet</span> |
||||||
|
</a> |
||||||
|
<ul class="header-navs"> |
||||||
|
<li> |
||||||
|
<a href="#" class="header-navs__link">ГЛАВНАЯ</a> |
||||||
|
</li> |
||||||
|
<li> |
||||||
|
<a href="#" class="header-navs__link">О COSMOPET</a> |
||||||
|
</li> |
||||||
|
<li> |
||||||
|
<a href="#" class="header-navs__link">ПРОИЗВОДСТВО</a> |
||||||
|
</li> |
||||||
|
<li> |
||||||
|
<a href="#" class="header-navs__link">БЛОГ</a> |
||||||
|
</li> |
||||||
|
<li class="header-accordion"> |
||||||
|
<div class="header-accordion__btn"> |
||||||
|
<span>ПРОДУКЦИЯ</span> |
||||||
|
<img src="./assets/img/arrow-down.svg" alt=""> |
||||||
|
</div> |
||||||
|
</li> |
||||||
|
</ul> |
||||||
|
<div class="header-right"> |
||||||
|
<div class="header-lang"> |
||||||
|
<div class="header-lang__btn"> |
||||||
|
<span>RU</span> |
||||||
|
<img src="./assets/img/arrow-down.svg" alt=""> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
<a href="#"> |
||||||
|
<img src="./assets/img/user-icon.svg" alt=""> |
||||||
|
</a> |
||||||
|
<a href="#"> |
||||||
|
<img src="./assets/img/basket-icon.svg" alt=""> |
||||||
|
</a> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</header> |
||||||
|
<!-- Header end --> |
||||||
|
|
||||||
|
<main> |
||||||
|
|
||||||
|
<!-- Breadcrumb --> |
||||||
|
<section class="breadcrumb"> |
||||||
|
<div class="container"> |
||||||
|
<a href="#">Главная</a> / |
||||||
|
<a href="#">Блог</a> / |
||||||
|
<a href="#">Имя Фамилия</a> |
||||||
|
</div> |
||||||
|
</section> |
||||||
|
<!-- Breadcrumb end --> |
||||||
|
|
||||||
|
<!-- Authors block --> |
||||||
|
<section class="author"> |
||||||
|
<div class="container"> |
||||||
|
<div class="author-content"> |
||||||
|
<div class="main-img"> |
||||||
|
<img src="./assets/img/author-main-card.png" alt=""> |
||||||
|
</div> |
||||||
|
<div> |
||||||
|
<div class="author-name">АвТОР АВТОР 1</div> |
||||||
|
<div class="author-type">главный редактор</div> |
||||||
|
<div class="author-description">Эксперт компании Cosmopet</div> |
||||||
|
<p>статей: 10</p> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
<h2>ЗАГОЛОВОК 1 </h2> |
||||||
|
</div> |
||||||
|
</section> |
||||||
|
<!-- Authors block end --> |
||||||
|
|
||||||
|
</main> |
||||||
|
|
||||||
|
<!-- Footer --> |
||||||
|
<footer class="footer"> |
||||||
|
<div class="container"> |
||||||
|
<div class="footer-top"> |
||||||
|
<div class="footer-content__wrap"> |
||||||
|
<div class="footer-content"> |
||||||
|
<a href="/" class="logo"> |
||||||
|
<img src="./assets/img/logo-green.svg" alt=""> |
||||||
|
<span>сosmopet</span> |
||||||
|
</a> |
||||||
|
<p class="footer-content__address"> |
||||||
|
123182 г. Москва, <br> |
||||||
|
4-й Красногорский пр., <br> |
||||||
|
д. 2/4, стр. 1, этаж/ком. 3/1 |
||||||
|
</p> |
||||||
|
<ul> |
||||||
|
<li> |
||||||
|
<p>Отзывы и предложения</p> |
||||||
|
<a href="mailto:pro@cosmopet.shop" target="_blank">pro@cosmopet.shop</a> |
||||||
|
</li> |
||||||
|
<li> |
||||||
|
<p>Заявки для оптовых покупателей</p> |
||||||
|
<a href="mailto:pro@cosmopet.shop" target="_blank">pro@cosmopet.shop</a> |
||||||
|
</li> |
||||||
|
<li> |
||||||
|
<p>Связь с ветеринаром</p> |
||||||
|
<a href="mailto:vetvopros@cosmopet.shop" target="_blank">vetvopros@cosmopet.shop</a> |
||||||
|
</li> |
||||||
|
</ul> |
||||||
|
</div> |
||||||
|
<div class="footer-top__link"> |
||||||
|
<a href="#" class="link-black">Чат бот с ветеринаром</a> |
||||||
|
<a href="#" class="link-white">Калькулятор рациона</a> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
<form class="footer-contact"> |
||||||
|
<h3 class="footer-contact__title">Форма обратной связи</h3> |
||||||
|
<input type="text" placeholder="Ваше имя" class="form-inp"> |
||||||
|
<input type="email" placeholder="Эл.почта" class="form-inp"> |
||||||
|
<textarea class="form-textarea" name="" placeholder="Текст обращения" id=""></textarea> |
||||||
|
<button class="footer-contact__submit" type="submit">Отправить</button> |
||||||
|
</form> |
||||||
|
</div> |
||||||
|
<div class="footer-bottom"> |
||||||
|
<ul class="footer-network"> |
||||||
|
<li> |
||||||
|
<a href="#"> |
||||||
|
<img src="./assets/img/footer-network-1.svg" alt=""> |
||||||
|
</a> |
||||||
|
</li> |
||||||
|
<li> |
||||||
|
<a href="#"> |
||||||
|
<img src="./assets/img/footer-network-2.svg" alt=""> |
||||||
|
</a> |
||||||
|
</li> |
||||||
|
<li> |
||||||
|
<a href="#"> |
||||||
|
<img src="./assets/img/footer-network-3.svg" alt=""> |
||||||
|
</a> |
||||||
|
</li> |
||||||
|
</ul> |
||||||
|
<a href="#">Соглашение о конфиденциальности</a> |
||||||
|
<a href="#">Декларация соответствия корма</a> |
||||||
|
<a href="#">Декларация соответствия лакомств</a> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</footer> |
||||||
|
<!-- Footer end --> |
||||||
|
|
||||||
|
</div> |
||||||
|
|
||||||
|
<!-- Swiper JS --> |
||||||
|
<script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script> |
||||||
|
<script src="./assets/js/main.js"></script> |
||||||
|
</body> |
||||||
|
</html> |
@ -0,0 +1,256 @@ |
|||||||
|
<!DOCTYPE html> |
||||||
|
<html lang="ru"> |
||||||
|
<head> |
||||||
|
<meta charset="UTF-8"> |
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge"> |
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
||||||
|
<title>SEO title</title> |
||||||
|
<meta name="description" content="SEO Description"> |
||||||
|
<link rel="shortcut icon" href="/assets/img/favicon.ico?v=1.0"> |
||||||
|
|
||||||
|
<!-- Link Swiper's CSS --> |
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" /> |
||||||
|
|
||||||
|
<!-- Базовые стили --> |
||||||
|
<link rel="stylesheet" href="/assets/css/gp-style-normalize.css?v=1.0"> |
||||||
|
<link rel="stylesheet" href="/assets/css/gp-style-core.css?v=1.0"> |
||||||
|
<link rel="stylesheet" href="/assets/css/gp-style-desktop.css?v=1.0"> |
||||||
|
<!-- Адаптив --> |
||||||
|
<link rel="stylesheet" media="screen and (min-width: 1400px)" href="/assets/css/gp-style-ultra.css?v=1.0"> |
||||||
|
<link rel="stylesheet" media="screen and (max-width: 1200px)" href="/assets/css/gp-style-xl.css?v=1.0"> |
||||||
|
<link rel="stylesheet" media="screen and (max-width: 992px)" href="/assets/css/gp-style-tablet.css?v=1.0"> |
||||||
|
<link rel="stylesheet" media="screen and (max-width: 576px)" href="/assets/css/gp-style-mobile.css?v=1.0"> |
||||||
|
|
||||||
|
|
||||||
|
<!-- Яндекс.Вебмастер + Google Search Console --> |
||||||
|
<meta name="yandex-verification" content="XXXXXXXXXXXXXXXXX" /> |
||||||
|
<meta name="google-site-verification" content="XXXXXXXXXXXXXXXXX" /> |
||||||
|
<!-- /Яндекс.Вебмастер + Google Search Console --> |
||||||
|
|
||||||
|
<!-- Yandex.Metrika counter --> |
||||||
|
<script type="text/javascript"> |
||||||
|
(function (m, e, t, r, i, k, a) { |
||||||
|
m[i] = m[i] || function () { (m[i].a = m[i].a || []).push(arguments) }; |
||||||
|
m[i].l = 1 * new Date(); |
||||||
|
for (var j = 0; j < document.scripts.length; j++) { if (document.scripts[j].src === r) { return; } } |
||||||
|
k = e.createElement(t), a = e.getElementsByTagName(t)[0], k.async = 1, k.src = r, a.parentNode.insertBefore(k, a) |
||||||
|
}) |
||||||
|
(window, document, "script", "https://mc.yandex.ru/metrika/tag.js", "ym"); |
||||||
|
|
||||||
|
ym(XXXXXX, "init", { // XXXXXX - счетчик |
||||||
|
clickmap: true, |
||||||
|
trackLinks: true, |
||||||
|
accurateTrackBounce: true, |
||||||
|
webvisor: true, |
||||||
|
ecommerce: "dataLayer" |
||||||
|
}); |
||||||
|
</script> |
||||||
|
<noscript> |
||||||
|
<div><img src="https://mc.yandex.ru/watch/85828806" style="position:absolute; left:-9999px;" alt="" /></div> |
||||||
|
</noscript> |
||||||
|
<!-- /Yandex.Metrika counter --> |
||||||
|
|
||||||
|
|
||||||
|
</head> |
||||||
|
<body> |
||||||
|
|
||||||
|
<div class="wrapper"> |
||||||
|
|
||||||
|
<!-- Header --> |
||||||
|
<header class="header"> |
||||||
|
<div class="container header-container"> |
||||||
|
<button class="header-bars"> |
||||||
|
<img src="./assets/img/bars.svg" alt=""> |
||||||
|
</button> |
||||||
|
<a href="/" class="header-logo"> |
||||||
|
<img src="./assets/img/logo.svg" alt=""> |
||||||
|
<span>сosmopet</span> |
||||||
|
</a> |
||||||
|
<ul class="header-navs"> |
||||||
|
<li> |
||||||
|
<a href="#" class="header-navs__link">ГЛАВНАЯ</a> |
||||||
|
</li> |
||||||
|
<li> |
||||||
|
<a href="#" class="header-navs__link">О COSMOPET</a> |
||||||
|
</li> |
||||||
|
<li> |
||||||
|
<a href="#" class="header-navs__link">ПРОИЗВОДСТВО</a> |
||||||
|
</li> |
||||||
|
<li> |
||||||
|
<a href="#" class="header-navs__link">БЛОГ</a> |
||||||
|
</li> |
||||||
|
<li class="header-accordion"> |
||||||
|
<div class="header-accordion__btn"> |
||||||
|
<span>ПРОДУКЦИЯ</span> |
||||||
|
<img src="./assets/img/arrow-down.svg" alt=""> |
||||||
|
</div> |
||||||
|
</li> |
||||||
|
</ul> |
||||||
|
<div class="header-right"> |
||||||
|
<div class="header-lang"> |
||||||
|
<div class="header-lang__btn"> |
||||||
|
<span>RU</span> |
||||||
|
<img src="./assets/img/arrow-down.svg" alt=""> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
<a href="#"> |
||||||
|
<img src="./assets/img/user-icon.svg" alt=""> |
||||||
|
</a> |
||||||
|
<a href="#"> |
||||||
|
<img src="./assets/img/basket-icon.svg" alt=""> |
||||||
|
</a> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</header> |
||||||
|
<!-- Header end --> |
||||||
|
|
||||||
|
<main> |
||||||
|
|
||||||
|
<!-- Breadcrumb --> |
||||||
|
<section class="breadcrumb"> |
||||||
|
<div class="container"> |
||||||
|
<a href="#">Главная</a> / |
||||||
|
<a href="#">Блог</a> / |
||||||
|
<a href="#">Наши авторы</a> |
||||||
|
</div> |
||||||
|
</section> |
||||||
|
<!-- Breadcrumb end --> |
||||||
|
|
||||||
|
<!-- Authors block --> |
||||||
|
<section class="authors"> |
||||||
|
<div class="container"> |
||||||
|
<h2>Все авторы</h2> |
||||||
|
<ul> |
||||||
|
<li> |
||||||
|
<a href="./author.html"> |
||||||
|
<div class="main-img"> |
||||||
|
<img src="./assets/img/author-1.png" alt=""> |
||||||
|
</div> |
||||||
|
<div class="authors-name">АвТОР АВТОР 1</div> |
||||||
|
<div class="authors-type">главный редактор</div> |
||||||
|
<p>статей: 10</p> |
||||||
|
</a> |
||||||
|
</li> |
||||||
|
<li> |
||||||
|
<a href="./author.html"> |
||||||
|
<div class="main-img"> |
||||||
|
<img src="./assets/img/author-2.png" alt=""> |
||||||
|
</div> |
||||||
|
<div class="authors-name">АвТОР АВТОР 2</div> |
||||||
|
<div class="authors-type">редактор</div> |
||||||
|
<p>статей: 3</p> |
||||||
|
</a> |
||||||
|
</li> |
||||||
|
<li> |
||||||
|
<a href="./author.html"> |
||||||
|
<div class="main-img"> |
||||||
|
<img src="./assets/img/author-3.png" alt=""> |
||||||
|
</div> |
||||||
|
<div class="authors-name">АвТОР АВТОР 3</div> |
||||||
|
<div class="authors-type">технолог</div> |
||||||
|
<p>статей: 2</p> |
||||||
|
</a> |
||||||
|
</li> |
||||||
|
<li> |
||||||
|
<a href="./author.html"> |
||||||
|
<div class="main-img"> |
||||||
|
<img src="./assets/img/author-4.png" alt=""> |
||||||
|
</div> |
||||||
|
<div class="authors-name">АвТОР АВТОР 4</div> |
||||||
|
<div class="authors-type">охранник</div> |
||||||
|
<p>статей: 100</p> |
||||||
|
</a> |
||||||
|
</li> |
||||||
|
<li> |
||||||
|
<a href="./author.html"> |
||||||
|
<div class="main-img"> |
||||||
|
<img src="./assets/img/author-5.png" alt=""> |
||||||
|
</div> |
||||||
|
<div class="authors-name">АвТОР АВТОР 5</div> |
||||||
|
<div class="authors-type">вольный хлебопашец</div> |
||||||
|
<p>статей: 2</p> |
||||||
|
</a> |
||||||
|
</li> |
||||||
|
</ul> |
||||||
|
</div> |
||||||
|
</section> |
||||||
|
<!-- Authors block end --> |
||||||
|
|
||||||
|
</main> |
||||||
|
|
||||||
|
<!-- Footer --> |
||||||
|
<footer class="footer"> |
||||||
|
<div class="container"> |
||||||
|
<div class="footer-top"> |
||||||
|
<div class="footer-content__wrap"> |
||||||
|
<div class="footer-content"> |
||||||
|
<a href="/" class="logo"> |
||||||
|
<img src="./assets/img/logo-green.svg" alt=""> |
||||||
|
<span>сosmopet</span> |
||||||
|
</a> |
||||||
|
<p class="footer-content__address"> |
||||||
|
123182 г. Москва, <br> |
||||||
|
4-й Красногорский пр., <br> |
||||||
|
д. 2/4, стр. 1, этаж/ком. 3/1 |
||||||
|
</p> |
||||||
|
<ul> |
||||||
|
<li> |
||||||
|
<p>Отзывы и предложения</p> |
||||||
|
<a href="mailto:pro@cosmopet.shop" target="_blank">pro@cosmopet.shop</a> |
||||||
|
</li> |
||||||
|
<li> |
||||||
|
<p>Заявки для оптовых покупателей</p> |
||||||
|
<a href="mailto:pro@cosmopet.shop" target="_blank">pro@cosmopet.shop</a> |
||||||
|
</li> |
||||||
|
<li> |
||||||
|
<p>Связь с ветеринаром</p> |
||||||
|
<a href="mailto:vetvopros@cosmopet.shop" target="_blank">vetvopros@cosmopet.shop</a> |
||||||
|
</li> |
||||||
|
</ul> |
||||||
|
</div> |
||||||
|
<div class="footer-top__link"> |
||||||
|
<a href="#" class="link-black">Чат бот с ветеринаром</a> |
||||||
|
<a href="#" class="link-white">Калькулятор рациона</a> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
<form class="footer-contact"> |
||||||
|
<h3 class="footer-contact__title">Форма обратной связи</h3> |
||||||
|
<input type="text" placeholder="Ваше имя" class="form-inp"> |
||||||
|
<input type="email" placeholder="Эл.почта" class="form-inp"> |
||||||
|
<textarea class="form-textarea" name="" placeholder="Текст обращения" id=""></textarea> |
||||||
|
<button class="footer-contact__submit" type="submit">Отправить</button> |
||||||
|
</form> |
||||||
|
</div> |
||||||
|
<div class="footer-bottom"> |
||||||
|
<ul class="footer-network"> |
||||||
|
<li> |
||||||
|
<a href="#"> |
||||||
|
<img src="./assets/img/footer-network-1.svg" alt=""> |
||||||
|
</a> |
||||||
|
</li> |
||||||
|
<li> |
||||||
|
<a href="#"> |
||||||
|
<img src="./assets/img/footer-network-2.svg" alt=""> |
||||||
|
</a> |
||||||
|
</li> |
||||||
|
<li> |
||||||
|
<a href="#"> |
||||||
|
<img src="./assets/img/footer-network-3.svg" alt=""> |
||||||
|
</a> |
||||||
|
</li> |
||||||
|
</ul> |
||||||
|
<a href="#">Соглашение о конфиденциальности</a> |
||||||
|
<a href="#">Декларация соответствия корма</a> |
||||||
|
<a href="#">Декларация соответствия лакомств</a> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
</footer> |
||||||
|
<!-- Footer end --> |
||||||
|
|
||||||
|
</div> |
||||||
|
|
||||||
|
<!-- Swiper JS --> |
||||||
|
<script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script> |
||||||
|
<script src="./assets/js/main.js"></script> |
||||||
|
</body> |
||||||
|
</html> |