diff --git a/css/_misc/fonts.scss b/css/_misc/fonts.scss new file mode 100644 index 0000000..6003525 --- /dev/null +++ b/css/_misc/fonts.scss @@ -0,0 +1,55 @@ +@font-face { + font-family: 'Gagalin-Regular'; + src: url('../fonts/Gagalin-Regular.woff') format('woff'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'Lifehack-Medium'; + src: url('../fonts/Lifehack-Medium.woff') format('woff'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'Ubuntu'; + src: url('../fonts/Ubuntu-Light.woff') format('woff'); + font-weight: 300; + font-style: normal; +} + +@font-face { + font-family: 'Ubuntu'; + src: url('../fonts/Ubuntu-Medium.woff') format('woff'); + font-weight: 500; + font-style: normal; +} + +@font-face { + font-family: 'Ubuntu'; + src: url('../fonts/ubuntu-b-webfont.woff') format('woff'); + font-weight: bold; + font-style: normal; +} + +@mixin gagalin() { + font-family: 'Gagalin-Regular', Helvetica, sans-serif; +} + +@mixin ubuntu($style: light) { + font-family: 'Ubuntu', Helvetica, sans-serif; + @if $style==light { + font-weight: 300; + } + @if $style==medium { + font-weight: 500; + } + @if $style==bold { + font-weight: bold; + } +} + +@mixin lifehack() { + font-family: 'Lifehack-Medium'; +} \ No newline at end of file diff --git a/css/_misc/layout.scss b/css/_misc/layout.scss new file mode 100644 index 0000000..bc5a229 --- /dev/null +++ b/css/_misc/layout.scss @@ -0,0 +1,86 @@ +html { + @include tablets { + font-size: rem(15px); + } + @include phones { + font-size: rem(13px); + } +} + +html, +body { + height: 100%; +} + +body { + font-size: rem(16px); + line-height: 1.42; + -webkit-font-smoothing: antialiased; + position: relative; + color: $black; +} + +.container { + margin: 0 auto; + position: relative; + max-width: rem(940px); + width: 95%; + display: flex; + flex-direction: column; + height: 100%; +} + +.wrapper { + position: relative; + width: 100%; + min-height: 100%; + overflow: hidden; +} + +h1, +h2, +h3, +h4, +h5, +h6 { + margin-top: 0; + font-weight: normal; +} + +table { + border-collapse: collapse; + border-spacing: 0; +} + +ul { + padding: 0; + margin: 0; + li { + list-style: none; + } +} + +p { + padding: 0; + margin: 0; +} + +footer { + position: relative; + width: 100%; +} + +* { + box-sizing: border-box; +} + +.section { + min-height: rem(650px); + height: 100vh; + display: flex; + flex-direction: column; + justify-content: center; + @include tablets { + // height: 125vh; + } +} \ No newline at end of file diff --git a/css/_misc/media.scss b/css/_misc/media.scss new file mode 100644 index 0000000..9b2b189 --- /dev/null +++ b/css/_misc/media.scss @@ -0,0 +1,21 @@ +@function rem($px) { + @return $px / 16px+0rem; +} + +@mixin pc { + @media screen and (min-width: $tablets) { + @content; + } +} + +@mixin tablets { + @media screen and (max-width: $tablets) { + @content; + } +} + +@mixin phones { + @media screen and (max-width: $phones) { + @content; + } +} \ No newline at end of file diff --git a/css/_misc/mixins.scss b/css/_misc/mixins.scss new file mode 100644 index 0000000..6bbc78f --- /dev/null +++ b/css/_misc/mixins.scss @@ -0,0 +1,29 @@ +@mixin placecolor($color: #000000) { + &::-webkit-input-placeholder { + color: $color; + } + &:-moz-placeholder { + color: $color; + } + &::-moz-placeholder { + color: $color; + } + &:-ms-input-placeholder { + color: $color; + } +} + +@mixin vertical-gradient($top-color: #ffffff, $bottom-color: #000000) { + background-color: $top-color; + background-image: -webkit-gradient(linear, left top, left bottom, from($top-color), to($bottom-color)); + /* Chrome, Safari 4+ */ + background-image: -webkit-linear-gradient(top, $top-color, $bottom-color); + /* Chrome 10-25, iOS 5+, Safari 5.1+ */ + background-image: -moz-linear-gradient(top, $top-color, $bottom-color); + /* Firefox 3.6-15 */ + background-image: -o-linear-gradient(top, $top-color, $bottom-color); + /* Opera 11.10-12.00 */ + background-image: linear-gradient(to bottom, $top-color, $bottom-color); + /* Chrome 26, Firefox 16+, IE 10+, Opera 12.10+ */ + filter: progid:DXImageTransform.Microsoft.gradient(startColorStr=$top-color, EndColorStr=$bottom-color); +} \ No newline at end of file diff --git a/scss/normalize.scss b/css/_misc/normalize.scss similarity index 99% rename from scss/normalize.scss rename to css/_misc/normalize.scss index 57f93c8..fa4e73d 100644 --- a/scss/normalize.scss +++ b/css/_misc/normalize.scss @@ -444,4 +444,4 @@ template { [hidden] { display: none; -} \ No newline at end of file +} diff --git a/css/blocks/best.scss b/css/blocks/best.scss new file mode 100644 index 0000000..6e83b4a --- /dev/null +++ b/css/blocks/best.scss @@ -0,0 +1,74 @@ +.best { + background: url("../img/bg/best.png") center center no-repeat; + background-size: cover; + text-align: center; + display: flex; + align-items: center; + .sectiontitle { + color: $black; + margin-bottom: rem(85px); + margin-top: rem(80px); + } +} + +.best__list { + display: flex; + @include phones { + flex-direction: column; + } +} + +.best__item { + margin-bottom: rem(15px); + padding: 0 rem(15px); + display: flex; + flex-direction: column; + flex: 1; + @include phones { + flex-direction: row; + margin-bottom: rem(50px); + justify-content: center; + align-items: center; + } +} + +.best__pic { + display: flex; + flex-direction: column; + @include phones { + margin-right: rem(30px); + align-items: center; + justify-content: center; + } +} + +.best__icon { + width: 90%; + height: rem(100px); + margin-bottom: rem(35px); + svg { + max-width: 95%; + } + @include phones { + width: rem(100px); + height: rem(100px); + } +} + +.best__title { + @include lifehack(); + font-size: rem(24.1px); + color: $black; + margin-bottom: rem(20px); + @include phones { + text-align: left; + } +} + +.best__desc { + @include ubuntu($style: light); + font-size: rem(14.03px); + @include phones { + text-align: left; + } +} \ No newline at end of file diff --git a/css/blocks/burgers.scss b/css/blocks/burgers.scss new file mode 100644 index 0000000..8040980 --- /dev/null +++ b/css/blocks/burgers.scss @@ -0,0 +1,207 @@ +.burgers { + background: rgb(249, 180, 59); + background: -moz-linear-gradient(top, rgb(249, 180, 59) 0%, rgb(236, 145, 57) 51%, rgb(249, 180, 59) 100%); + /* FF3.6-15 */ + background: -webkit-linear-gradient(top, rgb(249, 180, 59) 0%, rgb(236, 145, 57) 51%, rgb(249, 180, 59) 100%); + /* Chrome10-25,Safari5.1-6 */ + background: linear-gradient(to bottom, rgb(249, 180, 59) 0%, rgb(236, 145, 57) 51%, rgb(249, 180, 59) 100%); + /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9b43b', endColorstr='#f9b43b', GradientType=0); + /* IE6-9 */ + display: flex; + align-items: center; + justify-content: center; +} + +.burgers__content { + display: flex; + align-items: center; + justify-content: center; + margin-top: 20%; + margin-bottom: 20%; +} + +.content_left { + display: flex; + flex-direction: column; + align-items: center; + position: relative; +} + +.content_right { + padding-bottom: rem(40px); + .section-title { + line-height: rem(64px); + margin-bottom: rem(40px); + } +} + +.burgers__button { + display: flex; + margin-right: auto; + position: relative; +} + +.burgers-box__hover { + border-radius: rem(5px); + background-color: rgba(#fef8ec, .9); + display: none; +} + +.burgers-box { + width: rem(90px); + height: rem(90px); + background-color: #f08c33; + border-radius: rem(5px); + display: flex; + justify-content: center; + align-items: center; + flex-direction: column; + position: relative; + &:hover { + background-color: $red; + &+.burgers-box__hover { + display: block; + position: absolute; + left: rem(90px); + } + } +} + +.burgers-box__icon { + width: rem(46px); + height: rem(42px); +} + +.burgers-box__title { + color: $white; + @include gagalin(); + font-size: rem(14px); + margin-top: rem(8px); +} + +.hover__list { + justify-content: center; + align-items: center; +} + +.hover__item { + display: flex; + justify-content: flex-start; + align-items: center; + margin-bottom: rem(15px); + margin-left: rem(20px); + &:first-child { + margin-top: rem(18px); + } +} + +.hover__icon { + width: rem(45px); + height: rem(45px); + margin-right: rem(25px); +} + +.hover__desc { + margin-right: rem(67px); + font-size: rem(14px); + @include ubuntu($style: medium); + color: $black; +} + +.hover__amount { + display: flex; + flex-wrap: nowrap; + margin-right: rem(20px); + margin-left: auto; +} + +.callories__icon { + width: rem(60px); + height: rem(60px); +} + +.callories__img { + display: flex; + margin-top: auto; +} + +.burger__callories { + position: absolute; + left: 0; + top: 100%; +} + +.callories__img { + position: relative; + display: flex; + justify-content: flex-start; + align-items: center; + flex-direction: column; +} + +.callories__ammount { + position: absolute; + top: 45%; + left: 50%; + transform: translate(-50%, -50%); + color: $white; + font-size: rem(20px); + @include gagalin(); + opacity: .5; +} + +.callories__mesure { + color: $white; + font-size: rem(14px); + @include gagalin(); + opacity: .5; +} + +.content__desc { + color: $white; + font-size: rem(14px); + @include ubuntu($style: light); +} + +.cost__price { + color: $red; + font-size: rem(72px); + @include gagalin(); + margin-right: rem(10px); +} + +.cost__mesure { + color: $red; + font-size: rem(30px); + @include gagalin(); + margin-right: rem(30px); + margin-top: rem(30px); +} + +.content__cost { + display: flex; + align-items: center; + margin-top: rem(50px); +} + +.content__btn { + margin-top: rem(40px); +} + +.arrow { + width: rem(30px); + height: rem(30px); + &.arrow_left { + position: absolute; + top: 50%; + left: -10%; + transform: rotate(90deg); + } + &.arrow_right { + position: absolute; + top: 50%; + right: -10%; + transform: rotate(-90deg); + } +} \ No newline at end of file diff --git a/css/blocks/common/btn.scss b/css/blocks/common/btn.scss new file mode 100644 index 0000000..dcf6065 --- /dev/null +++ b/css/blocks/common/btn.scss @@ -0,0 +1,21 @@ +.btn { + padding: rem(10px) rem(15px); + background: $orange; + text-decoration: none; + text-transform: uppercase; + border-radius: rem(5px); + color: $white; + display: inline-flex; + @include ubuntu($style: medium); + font-size: rem(13px); + + &:hover { + background-color: $red; + } + // &__grey { + // background-color: $black; + // &:hover { + // background-color: #1f2122; + // } + // } +} \ No newline at end of file diff --git a/css/blocks/common/fixed-menu.scss b/css/blocks/common/fixed-menu.scss new file mode 100644 index 0000000..fb6cbc0 --- /dev/null +++ b/css/blocks/common/fixed-menu.scss @@ -0,0 +1,48 @@ +.fixed-menu { + position: fixed; + top: rem(80px); + right: rem(45px); + width: rem(18px); + height: rem(170px); + @include tablets { + display: none; + } + @include phones { + display: none; + } +} + +ul.fixed-menu__list { + list-style: none; +} + +.fixed-menu__item { + display: inline-block; + content: ""; + width: rem(16px); + height: rem(16px); + border: rem(1px) solid transparent; + background-color: transparent; + position: relative; + border-radius: 50%; + &:hover { + border: rem(1px) solid #fff; + } + &--active { + border: rem(1px) solid #fff; + } +} + +.fixed-menu__link { + display: inline-block; + content: ""; + border-radius: 50%; + width: rem(6px); + height: rem(6px); + position: absolute; + background-color: $white; + top: 50%; + ; + left: 50%; + transform: translate(-50%, -50%); +} \ No newline at end of file diff --git a/css/blocks/common/section-title.scss b/css/blocks/common/section-title.scss new file mode 100644 index 0000000..576dd97 --- /dev/null +++ b/css/blocks/common/section-title.scss @@ -0,0 +1,15 @@ +.sectiontitle { + font-size: rem(72px); + color: $yellow; + @include gagalin(); + margin-bottom: rem(25px); + &_white { + color: $white; + } + @include tablets { + font-size: rem(65px); + } + @include phones { + font-size: rem(63.5px); + } +} \ No newline at end of file diff --git a/css/blocks/footer.scss b/css/blocks/footer.scss new file mode 100644 index 0000000..d8b79ae --- /dev/null +++ b/css/blocks/footer.scss @@ -0,0 +1,95 @@ +.footer { + background: url("../img/bg/footer.png") center center no-repeat; + background-size: cover; + position: absolute; + bottom: 0; + left: 0; + right: 0; + padding: rem(10px) 0; + height: rem(60px); + @include phones { + height: rem(120px); + } +} + +.footer__container { + display: flex; + flex-direction: row; + align-items: center; + @include phones { + flex-direction: column; + } +} + +.footer__col { + width: 50%; + margin-bottom: rem(13px); +} + +.footer__adress { + margin-top: rem(13px); + color: $white; + font-size: rem(14px); + @include ubuntu($style: light); + @include phones { + text-align: center; + } +} + +.footer__phone { + margin-top: rem(5px); + @include phones { + text-align: center; + margin-bottom: rem(10px); + } +} + +.footer__phone-icon { + margin-right: rem(10px); + width: rem(12px); + height: rem(12px); +} + +.footer__phone-link { + color: $orange; + font-size: rem(14px); + @include ubuntu($style: bold); + text-decoration: none; +} + +.footer__col_right { + text-align: right; + margin-bottom: 0; + display: flex; + justify-content: flex-end; + @include phones { + justify-content: center; + margin-bottom: rem(10px); + } +} + +.socials { + position: relative; + top: 50%; + display: flex; + align-items: center; +} + +.socials__item { + margin-left: rem(18px); +} + +.socials__link { + max-width: rem(23px); + max-height: rem(20px); + opacity: .3; + transition: .3s; + &:hover { + opacity: 1; + } +} + +.socials__link-icon { + height: rem(20px); + width: rem(20px); +} \ No newline at end of file diff --git a/css/blocks/hero.scss b/css/blocks/hero.scss new file mode 100644 index 0000000..6bd0323 --- /dev/null +++ b/css/blocks/hero.scss @@ -0,0 +1,185 @@ +.hero { + background: url("../img/bg/hero-bg.png") center center no-repeat; + background-size: cover; + display: flex; + justify-content: center; + align-items: center; + flex-direction: column; +} + +.header { + display: flex; + align-items: center; +} + +.header__btns { + display: flex; + align-items: center; + margin-left: auto; +} + +.nav__list { + display: flex; + align-items: center; + margin-right: rem(10px); + @include tablets { + display: none; + } + @include phones { + display: none; + } +} + +.nav__item { + display: flex; + align-items: center; + &:after { + content: ""; + display: block; + width: rem(4px); + height: rem(4px); + border-radius: 50%; + background: #fff; + margin: rem(0px) rem(16px); + } + &:last-child:after { + display: none; + } +} + +.nav__link { + color: $white; + @include ubuntu($style: medium); + font-size: rem(13px); + text-decoration: none; + text-transform: uppercase; +} + +.hamburger-menu__link { + vertical-align: middle; + position: relative; + height: rem(22px); + align-items: center; + margin-left: rem(30px); + display: none; + @include tablets { + display: flex; + } + @include phones { + display: flex; + } +} + +.hamburger-menu__link_bars { + &, + &:before, + &:after { + background: #fff; + width: rem(24px); + height: rem(5px); + border-radius: rem(3px); + } + &:before, + &:after { + content: ""; + display: block; + position: absolute; + } + &:before { + top: 0; + } + &:after { + bottom: 0; + } +} + +.hero__present { + display: flex; + @include tablets { + flex-direction: column; + align-items: center; + padding: 0 20%; + text-align: center; + } + @include phones { + flex-direction: column; + align-items: center; + padding: 0; + } +} + +.hero__container { + display: flex; + flex: 1; + flex-direction: column; + justify-content: center; + padding-bottom: 15%; +} + +.hero__left, +.hero__right { + float: left; + width: 50%; + @include tablets { + float: none; + width: auto; + } + @include phones { + float: none; + width: auto; + } +} + +.hero__right { + padding-top: rem(115px); + @include tablets { + padding-top: 0; + } + @include phones { + padding-top: 0; + } +} + +.hero__desc { + font-size: rem(65px); + color: $white; + @include lifehack(); + text-transform: lowercase; + line-height: 1em; + @include phones { + font-size: rem(54px); + } +} + +.hero__img { + display: inline-block; + position: relative; + left: 50%; + transform: translateX(-50%); + max-width: 100%; + max-height: 100%; +} + +.hero__arrow { + position: absolute; + display: block; + bottom: rem(20px); + left: 50%; + width: rem(60px); + height: rem(60px); + transform: translateX(-50%); + transition: .3s; + display: flex; + align-items: center; + justify-content: center; + @include phones { + bottom: rem(40px); + } +} + +.arrow__icon { + height: rem(40px); + width: rem(40px); + transition: .3s; + fill: #fff; +} \ No newline at end of file diff --git a/css/blocks/map.scss b/css/blocks/map.scss new file mode 100644 index 0000000..830b1fb --- /dev/null +++ b/css/blocks/map.scss @@ -0,0 +1,5 @@ +.map { + background: url("../img/content/map.png") center center no-repeat; + background-size: cover; + position: relative; +} \ No newline at end of file diff --git a/css/blocks/menu.scss b/css/blocks/menu.scss new file mode 100644 index 0000000..7c6847d --- /dev/null +++ b/css/blocks/menu.scss @@ -0,0 +1,78 @@ +.menu { + background: url("../img/bg/menu.png") center center no-repeat; + background-size: cover; + position: relative; +} + +.menu__title { + position: absolute; + top: 10%; + left: 10%; +} + +.menu-acco { + position: absolute; + right: 0; + top: 0; + bottom: 0; + display: flex; +} + +.menu-acco__link { + text-decoration: none; + width: rem(80px); + height: 100%; + display: flex; + justify-content: flex-end; + position: relative; +} + +.menu-acco__link-text { + font-size: rem(40px); + color: $white; + @include gagalin(); + text-align: center; + white-space: nowrap; + position: absolute; + transform: rotate(-90deg) translateY(-50%); + transform-origin: 0 0; + left: 50%; + top: 70%; + margin-top: rem(-20px); +} + +.menu-acco__item { + height: 100%; + display: flex; + &.active { + .menu-acco__content { + display: block; + } + .menu-acco__link-text { + color: $yellow; + } + @include phones {} + } +} + +.menu-acco__content { + height: 0; + overflow: hidden; + background-color: rgba(#2f3234, .93); + display: none; + @include ubuntu($style: light); + font-size: rem(14px); + color: $white; + padding: rem(60px) rem(30px); + width: rem(540px); + line-height: 1.8; + @include phones { + width: rem(400px); + } +} + +.menu-acco__link-pic { + background-position: center center; + background-repeat: no-repeat; + background-size: cover; +} \ No newline at end of file diff --git a/css/blocks/order.scss b/css/blocks/order.scss new file mode 100644 index 0000000..78ecb1a --- /dev/null +++ b/css/blocks/order.scss @@ -0,0 +1,185 @@ +.order { + background: url("../img/bg/order.png") center center no-repeat; + background-size: cover; + display: flex; + align-items: center; + flex-direction: column; + .sectiontitle { + text-align: center; + margin-bottom: rem(90px); + margin-top: rem(90px); + @include tablets { + margin-bottom: rem(50px); + } + } +} + +.order__form { + margin-left: -5%; + display: flex; + @include tablets { + flex-direction: column; + align-items: center; + justify-content: center; + } +} + +.order__form-col { + width: 45%; + margin-left: 5%; + display: flex; + flex-direction: column; + @include phones { + width: 90%; + } +} + +.order__form-row { + margin-bottom: rem(16px); + display: flex; + flex-direction: row; +} + +.order__form-text { + margin-bottom: rem(7px); + @include ubuntu($style: light); + color: $white; + font-size: rem(14px); +} + +.order__form-input { + font-size: rem(14px); + padding: rem(5px) rem(10px); + border: rem(1px) solid #d1cfcb; + border-radius: rem(5px); + width: 100%; +} + +.order__form-block { + width: 100%; + margin-right: rem(10px); +} + +.order__form-row { + display: flex; + margin-left: rem(-10px); + @include phones { + justify-content: center; + } +} + +.order__form-input_textarea { + height: rem(110px); + resize: none; +} + +.order__radio { + white-space: nowrap; + margin-right: rem(20px); + cursor: pointer; + display: flex; + justify-content: center; + flex-direction: row; + align-items: center; + // @include phones { + // margin-bottom: rem(20px); + // } +} + +.order__radio-elem { + visibility: hidden; +} + +.order__radio-fake { + width: rem(16px); + height: rem(16px); + border-radius: 50%; + background: #fff; + position: relative; + &:after { + content: ""; + display: block; + position: absolute; + width: rem(0px); + height: rem(0px); + border-radius: 50%; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + background-color: $red; + transition: .3s; + } +} + +.order__radio-elem:checked { + &+.order__radio-fake { + &:after { + width: rem(8px); + height: rem(8px); + } + } +} + +.order__radio-title { + font-size: rem(14px); + color: $white; + margin-left: rem(10px); + @include ubuntu($style: light); +} + +.order__radio_checkbox { + .order__radio-fake { + border-radius: rem(0px); + } + .order__radio-elem { + &+.order__radio-fake { + &:after { + background: transparent; + } + } + } + .order__radio-elem:checked { + &+.order__radio-fake { + &:after { + background: url("../../icons/check.svg") 50% no-repeat transparent; + background-size: contain; + width: rem(11px); + height: rem(9px); + } + } + } +} + +.order__form-buttons { + display: flex; + flex-direction: column; + flex-wrap: wrap; + margin-left: -3%; +} + +.order__form-button { + margin-right: rem(20px); + border: 0; + background: #e35028; + font-size: rem(13px); + text-transform: uppercase; + border-radius: rem(5px); + color: $white; + @include ubuntu($style: medium); + padding: rem(10px) rem(15px); + cursor: pointer; + width: rem(97px); + height: rem(35px); + margin-left: 3%; + @include tablets { + margin-top: rem(10px); + margin-right: rem(-5px); + } +} + +.order__form-button_reset { + padding-left: 0; + padding-right: 0; + text-transform: none; + background: transparent; +} \ No newline at end of file diff --git a/css/blocks/reviews.scss b/css/blocks/reviews.scss new file mode 100644 index 0000000..5f8a67d --- /dev/null +++ b/css/blocks/reviews.scss @@ -0,0 +1,97 @@ +.reviews { + background-color: #2f3234; + background-size: cover; +} + +.reviews__list { + display: flex; + width: 100%; + height: 100%; + flex-wrap: wrap; +} + +.reviews__item { + width: 25%; + height: 50%; + overflow: hidden; + position: relative; + &:hover { + .reviews__hover { + opacity: 1; + transform: scale(1); + } + } + @include tablets { + width: 50%; + height: 25%; + } +} + +.reviews__hover { + position: absolute; + left: 0; + right: 0; + bottom: 0; + top: 0; + background: rgba( #2f3234, .7); + display: flex; + justify-content: center; + align-items: center; + opacity: 0; + transform: scale(.7); + transition: .4s; +} + +.reviews__hover-content { + width: 80%; + @include tablets { + display: flex; + justify-content: center; + align-items: center; + flex-direction: column; + padding-top: rem(10px); + padding-bottom: rem(10px); + } +} + +.reviews__title { + color: #fff; + @include gagalin(); + font-size: rem(14px); + margin-bottom: rem(30px); + @include tablets { + margin-bottom: rem(10px); + } +} + +.reviews__text { + color: #fff; + @include ubuntu($style: light); + font-size: rem(14px); + width: rem(220px); + line-height: rem(24px); + @include tablets { + text-align: center; + } + @include phones { + display: none; + } +} + +.reviews__btn { + padding-top: rem(20px); + @include tablets { + padding-top: rem(10px); + } +} + +.reviews__item-photo { + position: absolute; + background-position: center center; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + min-width: 100%; + min-height: 100%; + filter: grayscale(100%); +} \ No newline at end of file diff --git a/css/blocks/team.scss b/css/blocks/team.scss new file mode 100644 index 0000000..5695962 --- /dev/null +++ b/css/blocks/team.scss @@ -0,0 +1,159 @@ +.team { + background: url("../img/bg/team.png") center center no-repeat; + background-size: cover; + position: relative; + .section-title { + margin-bottom: rem(90px); + } +} + +.team__section { + position: absolute; + top: 0; + right: 0; + bottom: 0; + width: 50%; + background: rgba(#2f3234, .93); + padding: 8% 2% 0 8%; + display: flex; + justify-content: flex-start; + align-items: flex-start; + flex-direction: column; + @include tablets { + width: 100%; + padding: 0; + align-items: center; + justify-content: center; + } +} + +.team__content { + @include tablets { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + } +} + +.team-acco { + @include tablets { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + } +} + +.team-acco__item { + margin-bottom: rem(40px); + &:last-child { + margin-bottom: 0; + } + &.active { + .team-acco__content { + height: auto; + } + .team-acco__title { + color: $yellow; + &:before { + transform: rotate(180deg); + } + } + } + @include tablets { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + } +} + +.team-acco__content { + width: 80%; + @include tablets { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + } +} + +.team-acco__title { + font-size: rem(14px); + color: $white; + @include gagalin(); + text-decoration: none; + margin-bottom: rem(20px); + display: flex; + align-items: center; + position: relative; + &:before { + content: ""; + width: rem(0px); + height: rem(0px); + border: rem(9px) solid transparent; + border-top-color: $yellow; + border-bottom: none; + margin-right: 10px; + } + @include tablets { + font-size: rem(25px); + } + @include phones { + font-size: rem(25px); + } +} + +.team-acco__content { + display: flex; + overflow: hidden; + height: 0; +} + +.team-acco__avatar { + width: rem(100px); + height: rem(100px); + border-radius: 50%; + overflow: hidden; + position: relative; +} + +.team-acco__avatar-pic { + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); +} + +.team-acco__desc { + margin-left: rem(20px); + width: rem(290px); + @include tablets { + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + width: auto; + flex-wrap: wrap; + text-align: center; + margin-left: initial; + } +} + +.team-acco__desc-occ { + font-size: rem(14px); + @include ubuntu($style: bold); + color: $white; + margin-bottom: rem(18px); + @include tablets { + text-align: center; + } +} + +.team-acco__desc-text { + font-size: rem(14px); + @include ubuntu($style: light); + color: $white; + flex-wrap: wrap; +} \ No newline at end of file diff --git a/css/main.css b/css/main.css index 107ce36..0ab0b27 100644 --- a/css/main.css +++ b/css/main.css @@ -1,255 +1,1840 @@ /*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */ -/* Document ========================================================================== */ -/** 1. Correct the line height in all browsers. 2. Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS. */ -html { line-height: 1.15; /* 1 */ -ms-text-size-adjust: 100%; /* 2 */ -webkit-text-size-adjust: 100%; /* 2 */ } - -/* Sections ========================================================================== */ -/** Remove the margin in all browsers (opinionated). */ -body { margin: 0; } - -/** Add the correct display in IE 9-. */ -article, aside, footer, header, nav, section { display: block; } - -/** Correct the font size and margin on `h1` elements within `section` and `article` contexts in Chrome, Firefox, and Safari. */ -h1 { font-size: 2em; margin: 0.67em 0; } - -/* Grouping content ========================================================================== */ -/** Add the correct display in IE 9-. 1. Add the correct display in IE. */ -figcaption, figure, main { /* 1 */ display: block; } - -/** Add the correct margin in IE 8. */ -figure { margin: 1em 40px; } - -/** 1. Add the correct box sizing in Firefox. 2. Show the overflow in Edge and IE. */ -hr { box-sizing: content-box; /* 1 */ height: 0; /* 1 */ overflow: visible; /* 2 */ } - -/** 1. Correct the inheritance and scaling of font size in all browsers. 2. Correct the odd `em` font sizing in all browsers. */ -pre { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ } - -/* Text-level semantics ========================================================================== */ -/** 1. Remove the gray background on active links in IE 10. 2. Remove gaps in links underline in iOS 8+ and Safari 8+. */ -a { background-color: transparent; /* 1 */ -webkit-text-decoration-skip: objects; /* 2 */ } - -/** 1. Remove the bottom border in Chrome 57- and Firefox 39-. 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */ -abbr[title] { border-bottom: none; /* 1 */ text-decoration: underline; /* 2 */ text-decoration: underline dotted; /* 2 */ } - -/** Prevent the duplicate application of `bolder` by the next rule in Safari 6. */ -b, strong { font-weight: inherit; } - -/** Add the correct font weight in Chrome, Edge, and Safari. */ -b, strong { font-weight: bolder; } - -/** 1. Correct the inheritance and scaling of font size in all browsers. 2. Correct the odd `em` font sizing in all browsers. */ -code, kbd, samp { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ } - -/** Add the correct font style in Android 4.3-. */ -dfn { font-style: italic; } - -/** Add the correct background and color in IE 9-. */ -mark { background-color: #ff0; color: #000; } - -/** Add the correct font size in all browsers. */ -small { font-size: 80%; } - -/** Prevent `sub` and `sup` elements from affecting the line height in all browsers. */ -sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } - -sub { bottom: -0.25em; } - -sup { top: -0.5em; } - -/* Embedded content ========================================================================== */ -/** Add the correct display in IE 9-. */ -audio, video { display: inline-block; } - -/** Add the correct display in iOS 4-7. */ -audio:not([controls]) { display: none; height: 0; } - -/** Remove the border on images inside links in IE 10-. */ -img { border-style: none; } - -/** Hide the overflow in IE. */ -svg:not(:root) { overflow: hidden; } - -/* Forms ========================================================================== */ -/** 1. Change the font styles in all browsers (opinionated). 2. Remove the margin in Firefox and Safari. */ -button, input, optgroup, select, textarea { font-family: sans-serif; /* 1 */ font-size: 100%; /* 1 */ line-height: 1.15; /* 1 */ margin: 0; /* 2 */ } - -/** Show the overflow in IE. 1. Show the overflow in Edge. */ -button, input { /* 1 */ overflow: visible; } - -/** Remove the inheritance of text transform in Edge, Firefox, and IE. 1. Remove the inheritance of text transform in Firefox. */ -button, select { /* 1 */ text-transform: none; } - -/** 1. Prevent a WebKit bug where (2) destroys native `audio` and `video` controls in Android 4. 2. Correct the inability to style clickable types in iOS and Safari. */ -button, html [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; /* 2 */ } - -/** Remove the inner border and padding in Firefox. */ -button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner { border-style: none; padding: 0; } - -/** Restore the focus styles unset by the previous rule. */ -button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring { outline: 1px dotted ButtonText; } - -/** Correct the padding in Firefox. */ -fieldset { padding: 0.35em 0.75em 0.625em; } - -/** 1. Correct the text wrapping in Edge and IE. 2. Correct the color inheritance from `fieldset` elements in IE. 3. Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers. */ -legend { box-sizing: border-box; /* 1 */ color: inherit; /* 2 */ display: table; /* 1 */ max-width: 100%; /* 1 */ padding: 0; /* 3 */ white-space: normal; /* 1 */ } - -/** 1. Add the correct display in IE 9-. 2. Add the correct vertical alignment in Chrome, Firefox, and Opera. */ -progress { display: inline-block; /* 1 */ vertical-align: baseline; /* 2 */ } - -/** Remove the default vertical scrollbar in IE. */ -textarea { overflow: auto; } - -/** 1. Add the correct box sizing in IE 10-. 2. Remove the padding in IE 10-. */ -[type="checkbox"], [type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ } - -/** Correct the cursor style of increment and decrement buttons in Chrome. */ -[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button { height: auto; } - -/** 1. Correct the odd appearance in Chrome and Safari. 2. Correct the outline style in Safari. */ -[type="search"] { -webkit-appearance: textfield; /* 1 */ outline-offset: -2px; /* 2 */ } - -/** Remove the inner padding and cancel buttons in Chrome and Safari on macOS. */ -[type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration { -webkit-appearance: none; } - -/** 1. Correct the inability to style clickable types in iOS and Safari. 2. Change font properties to `inherit` in Safari. */ -::-webkit-file-upload-button { -webkit-appearance: button; /* 1 */ font: inherit; /* 2 */ } - -/* Interactive ========================================================================== */ -/* Add the correct display in IE 9-. 1. Add the correct display in Edge, IE, and Firefox. */ -details, menu { display: block; } - -/* Add the correct display in all browsers. */ -summary { display: list-item; } - -/* Scripting ========================================================================== */ -/** Add the correct display in IE 9-. */ -canvas { display: inline-block; } - -/** Add the correct display in IE. */ -template { display: none; } - -/* Hidden ========================================================================== */ -/** Add the correct display in IE 10-. */ -[hidden] { display: none; } - -.fixed-menu { position: fixed; top: 90px; right: 40px; } - -.fixed-menu__item { margin-bottom: 5px; } - -.fixed-menu__link { width: 16px; height: 16px; display: block; position: relative; } -.fixed-menu__link:before, .fixed-menu__link:after { content: ''; display: block; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border-radius: 50%; } -.fixed-menu__link:before { width: 0; height: 0; border-radius: 50%; border: 1px solid #fff; opacity: 0; transition: .3s; } -.fixed-menu__link:after { width: 6px; height: 6px; background-color: #ffffff; } -.fixed-menu__link:hover:before { width: 14px; height: 14px; opacity: 1; } - -html, body { width: 100%; height: 100%; } - -body { font-size: 16px; line-height: 1.42; font-family: 'ubuntulight', Helvetica, sans-serif; color: #2f3234; -webkit-font-smoothing: antialiaced; } - -.container { margin: 0 auto; width: 940px; position: relative; top: 50%; transform: translateY(-50%); } - -.wrapper { overflow: hidden; min-height: 100%; min-width: 960px; } - -.section { height: 100%; height: 100vh; min-height: 650px; } - -.section__title { font-size: 72px; font-family: 'gagalinregular'; color: #f9b43b; } - -.section__title_black { color: #2f3234; margin-bottom: 80px; } - -ul { padding: 0; margin: 0; } - -li { list-style: none; } - -p { padding: 0; margin: 0; } - -footer { min-width: 960px; position: relative; } - -* { box-sizing: border-box; } - -@font-face { font-family: 'ubuntulight'; src: url("../fonts/ubuntu-light-webfont.woff") format("woff"), url("../fonts/ubuntu-light-webfont.svg#ubuntulight") format("svg"); font-weight: normal; font-style: normal; } -@font-face { font-family: 'ubuntumedium'; src: url("../fonts/ubuntu-medium-webfont.woff") format("woff"), url("../fonts/ubuntu-medium-webfont.svg#ubuntumedium") format("svg"); font-weight: normal; font-style: normal; } -@font-face { font-family: 'ubuntubold'; src: url("../fonts/ubuntu-b-webfont.woff") format("woff"), url("../fonts/ubuntu-b-webfont.svg#ubuntubold") format("svg"); font-weight: normal; font-style: normal; } -@font-face { font-family: 'ubunturegular'; src: url("../fonts/ubuntu-regular-webfont.woff") format("woff"), url("../fonts/ubuntu-regular-webfont.svg#ubunturegular") format("svg"); font-weight: normal; font-style: normal; } -@font-face { font-family: 'gagalinregular'; src: url("../fonts/gagalin-regular-webfont.woff") format("woff"), url("../fonts/gagalin-regular-webfont.svg#gagalinregular") format("svg"); font-weight: normal; font-style: normal; } -@font-face { font-family: 'lifehackmedium'; src: url("../fonts/lifehack_medium-webfont.woff") format("woff"), url("../fonts/lifehack_medium-webfont.svg#lifehackmedium") format("svg"); font-weight: normal; font-style: normal; } -.main { background: url(../img/background/main-bg.jpg) center center no-repeat; background-size: cover; position: relative; } - -.header__container { position: static; } - -.header { padding-top: 12px; } - -.header__logo { float: left; width: 32%; } - -.logo { display: inline-block; } - -.header__menu { float: left; width: 68%; padding-top: 16px; } - -.nav { width: 83%; display: inline-block; vertical-align: middle; } - -.nav__list { width: 100%; } - -.nav__item { white-space: nowrap; margin-right: 15px; display: block; float: left; } -.nav__item:after { content: ""; display: inline-block; vertical-align: middle; width: 4px; height: 4px; border-radius: 50%; background: white; margin-left: 15px; } -.nav__item:last-child { margin-right: 0; } -.nav__item:last-child:after { content: ''; display: none; } - -.nav__link { display: inline-block; vertical-align: middle; font-size: 13px; text-transform: uppercase; color: white; text-decoration: none; font-family: 'ubuntumedium'; } - -.order-link { width: 15%; display: inline-block; vertical-align: middle; padding: 9px 0; margin-left: 2%; } - -.order-link-btn { display: inline-block; vertical-align: top; background: #e45028; font-size: 13px; text-transform: uppercase; color: #fff; text-align: center; text-decoration: none; border-radius: 5px; padding: 9px 16px; font-family: 'ubuntumedium'; transition: background .3s; } -.order-link-btn:hover { background: #c1401e; } - -.main__container { position: absolute; top: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%); left: 0; right: 0; } - -.main__left { float: left; width: 50%; } - -.main__img { display: inline-block; max-width: 100%; position: relative; left: 50%; -webkit-transform: translateX(-50%); transform: translateX(-50%); } - -.main__right { float: left; width: 50%; padding-top: 115px; } - -.main__right .section__title { margin-bottom: 12px; } - -.main__desc { font-size: 65px; color: white; font-family: 'lifehackmedium'; text-transform: lowercase; line-height: 1em; } - -.down-arrow { display: block; position: absolute; bottom: 20px; left: 50%; width: 60px; height: 60px; margin-left: -15px; -webkit-transition: .3s; transition: .3s; } - -.down-arrow__icon-wrapper { display: block; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } - -.down-arrow__icon { fill: #fff; display: block; } - -.down-arrow svg { width: 30px; height: 30px; -webkit-transition: .3s; transition: .3s; position: relative; top: 0; } - -.best { background: url(../img/background/best.jpg) 50% no-repeat; background-size: cover; text-align: center; } - -.best__list { font-size: 14px; } - -.best__item { display: inline-block; vertical-align: top; width: 33%; padding: 0 10px; } - -.best__icon { height: 100px; width: 100px; display: inline-block; margin-bottom: 15px; } - -.best__title { font-size: 24px; font-family: 'lifehackmedium'; color: #2f3234; margin-bottom: 20px; } - -.reviews { background: #000; } - -.reviews__list { height: 100%; } - -.reviews__item { height: 50%; width: 25%; float: left; } - -.review { height: 100%; width: 100%; position: relative; } -.review:hover .review__hover { opacity: 1; transform: scale(1); } - -.review__pic { position: absolute; width: 100%; height: 100%; background-size: cover; background-position: center center; background-repeat: no-repeat; -webkit-filter: grayscale(100%); filter: grayscale(100%); } - -.review__hover { position: absolute; width: 100%; height: 100%; padding: 17% 12% 0; background: rgba(20, 20, 20, 0.7); transform: scale(0.9); opacity: 0; transition: .3s; } - -.review__title { color: #fff; font-family: 'gagalinregular'; font-size: 14px; margin-bottom: 25px; } - -.review__shorttext { color: #ffffff; font-size: 14px; font-family: 'ubuntulight'; margin-bottom: 13px; } - -.review__view { border-radius: 5px; background-color: #2f3234; padding: 8px 12px; display: inline-block; color: #fff; text-decoration: none; text-transform: uppercase; font-family: 'ubuntumedium'; font-size: 12px; -webkit-transition: .3s; transition: .3s; } - -/*# sourceMappingURL=main.css.map */ +/* Document + ========================================================================== */ +/** + * 1. Correct the line height in all browsers. + * 2. Prevent adjustments of font size after orientation changes in + * IE on Windows Phone and in iOS. + */ +html { + line-height: 1.15; + /* 1 */ + -ms-text-size-adjust: 100%; + /* 2 */ + -webkit-text-size-adjust: 100%; + /* 2 */ } + +/* Sections + ========================================================================== */ +/** + * Remove the margin in all browsers (opinionated). + */ +body { + margin: 0; } + +/** + * Add the correct display in IE 9-. + */ +article, +aside, +footer, +header, +nav, +section { + display: block; } + +/** + * Correct the font size and margin on `h1` elements within `section` and + * `article` contexts in Chrome, Firefox, and Safari. + */ +h1 { + font-size: 2em; + margin: 0.67em 0; } + +/* Grouping content + ========================================================================== */ +/** + * Add the correct display in IE 9-. + * 1. Add the correct display in IE. + */ +figcaption, +figure, +main { + /* 1 */ + display: block; } + +/** + * Add the correct margin in IE 8. + */ +figure { + margin: 1em 40px; } + +/** + * 1. Add the correct box sizing in Firefox. + * 2. Show the overflow in Edge and IE. + */ +hr { + -webkit-box-sizing: content-box; + box-sizing: content-box; + /* 1 */ + height: 0; + /* 1 */ + overflow: visible; + /* 2 */ } + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ +pre { + font-family: monospace, monospace; + /* 1 */ + font-size: 1em; + /* 2 */ } + +/* Text-level semantics + ========================================================================== */ +/** + * 1. Remove the gray background on active links in IE 10. + * 2. Remove gaps in links underline in iOS 8+ and Safari 8+. + */ +a { + background-color: transparent; + /* 1 */ + -webkit-text-decoration-skip: objects; + /* 2 */ } + +/** + * 1. Remove the bottom border in Chrome 57- and Firefox 39-. + * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. + */ +abbr[title] { + border-bottom: none; + /* 1 */ + text-decoration: underline; + /* 2 */ + text-decoration: underline dotted; + /* 2 */ } + +/** + * Prevent the duplicate application of `bolder` by the next rule in Safari 6. + */ +b, +strong { + font-weight: inherit; } + +/** + * Add the correct font weight in Chrome, Edge, and Safari. + */ +b, +strong { + font-weight: bolder; } + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ +code, +kbd, +samp { + font-family: monospace, monospace; + /* 1 */ + font-size: 1em; + /* 2 */ } + +/** + * Add the correct font style in Android 4.3-. + */ +dfn { + font-style: italic; } + +/** + * Add the correct background and color in IE 9-. + */ +mark { + background-color: #ff0; + color: #000; } + +/** + * Add the correct font size in all browsers. + */ +small { + font-size: 80%; } + +/** + * Prevent `sub` and `sup` elements from affecting the line height in + * all browsers. + */ +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; } + +sub { + bottom: -0.25em; } + +sup { + top: -0.5em; } + +/* Embedded content + ========================================================================== */ +/** + * Add the correct display in IE 9-. + */ +audio, +video { + display: inline-block; } + +/** + * Add the correct display in iOS 4-7. + */ +audio:not([controls]) { + display: none; + height: 0; } + +/** + * Remove the border on images inside links in IE 10-. + */ +img { + border-style: none; } + +/** + * Hide the overflow in IE. + */ +svg:not(:root) { + overflow: hidden; } + +/* Forms + ========================================================================== */ +/** + * 1. Change the font styles in all browsers (opinionated). + * 2. Remove the margin in Firefox and Safari. + */ +button, +input, +optgroup, +select, +textarea { + font-family: sans-serif; + /* 1 */ + font-size: 100%; + /* 1 */ + line-height: 1.15; + /* 1 */ + margin: 0; + /* 2 */ } + +/** + * Show the overflow in IE. + * 1. Show the overflow in Edge. + */ +button, +input { + /* 1 */ + overflow: visible; } + +/** + * Remove the inheritance of text transform in Edge, Firefox, and IE. + * 1. Remove the inheritance of text transform in Firefox. + */ +button, +select { + /* 1 */ + text-transform: none; } + +/** + * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video` + * controls in Android 4. + * 2. Correct the inability to style clickable types in iOS and Safari. + */ +button, +html [type="button"], +[type="reset"], +[type="submit"] { + -webkit-appearance: button; + /* 2 */ } + +/** + * Remove the inner border and padding in Firefox. + */ +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + border-style: none; + padding: 0; } + +/** + * Restore the focus styles unset by the previous rule. + */ +button:-moz-focusring, +[type="button"]:-moz-focusring, +[type="reset"]:-moz-focusring, +[type="submit"]:-moz-focusring { + outline: 1px dotted ButtonText; } + +/** + * Correct the padding in Firefox. + */ +fieldset { + padding: 0.35em 0.75em 0.625em; } + +/** + * 1. Correct the text wrapping in Edge and IE. + * 2. Correct the color inheritance from `fieldset` elements in IE. + * 3. Remove the padding so developers are not caught out when they zero out + * `fieldset` elements in all browsers. + */ +legend { + -webkit-box-sizing: border-box; + box-sizing: border-box; + /* 1 */ + color: inherit; + /* 2 */ + display: table; + /* 1 */ + max-width: 100%; + /* 1 */ + padding: 0; + /* 3 */ + white-space: normal; + /* 1 */ } + +/** + * 1. Add the correct display in IE 9-. + * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera. + */ +progress { + display: inline-block; + /* 1 */ + vertical-align: baseline; + /* 2 */ } + +/** + * Remove the default vertical scrollbar in IE. + */ +textarea { + overflow: auto; } + +/** + * 1. Add the correct box sizing in IE 10-. + * 2. Remove the padding in IE 10-. + */ +[type="checkbox"], +[type="radio"] { + -webkit-box-sizing: border-box; + box-sizing: border-box; + /* 1 */ + padding: 0; + /* 2 */ } + +/** + * Correct the cursor style of increment and decrement buttons in Chrome. + */ +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; } + +/** + * 1. Correct the odd appearance in Chrome and Safari. + * 2. Correct the outline style in Safari. + */ +[type="search"] { + -webkit-appearance: textfield; + /* 1 */ + outline-offset: -2px; + /* 2 */ } + +/** + * Remove the inner padding and cancel buttons in Chrome and Safari on macOS. + */ +[type="search"]::-webkit-search-cancel-button, +[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; } + +/** + * 1. Correct the inability to style clickable types in iOS and Safari. + * 2. Change font properties to `inherit` in Safari. + */ +::-webkit-file-upload-button { + -webkit-appearance: button; + /* 1 */ + font: inherit; + /* 2 */ } + +/* Interactive + ========================================================================== */ +/* + * Add the correct display in IE 9-. + * 1. Add the correct display in Edge, IE, and Firefox. + */ +details, +menu { + display: block; } + +/* + * Add the correct display in all browsers. + */ +summary { + display: list-item; } + +/* Scripting + ========================================================================== */ +/** + * Add the correct display in IE 9-. + */ +canvas { + display: inline-block; } + +/** + * Add the correct display in IE. + */ +template { + display: none; } + +/* Hidden + ========================================================================== */ +/** + * Add the correct display in IE 10-. + */ +[hidden] { + display: none; } + +@font-face { + font-family: 'Gagalin-Regular'; + src: url("../fonts/Gagalin-Regular.woff") format("woff"); + font-weight: normal; + font-style: normal; } +@font-face { + font-family: 'Lifehack-Medium'; + src: url("../fonts/Lifehack-Medium.woff") format("woff"); + font-weight: normal; + font-style: normal; } +@font-face { + font-family: 'Ubuntu'; + src: url("../fonts/Ubuntu-Light.woff") format("woff"); + font-weight: 300; + font-style: normal; } +@font-face { + font-family: 'Ubuntu'; + src: url("../fonts/Ubuntu-Medium.woff") format("woff"); + font-weight: 500; + font-style: normal; } +@font-face { + font-family: 'Ubuntu'; + src: url("../fonts/ubuntu-b-webfont.woff") format("woff"); + font-weight: bold; + font-style: normal; } +@media screen and (max-width: 768px) { + html { + font-size: 0.9375rem; } } +@media screen and (max-width: 480px) { + html { + font-size: 0.8125rem; } } + +html, +body { + height: 100%; } + +body { + font-size: 1rem; + line-height: 1.42; + -webkit-font-smoothing: antialiased; + position: relative; + color: #2f3234; } + +.container { + margin: 0 auto; + position: relative; + max-width: 58.75rem; + width: 95%; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + height: 100%; } + +.wrapper { + position: relative; + width: 100%; + min-height: 100%; + overflow: hidden; } + +h1, +h2, +h3, +h4, +h5, +h6 { + margin-top: 0; + font-weight: normal; } + +table { + border-collapse: collapse; + border-spacing: 0; } + +ul { + padding: 0; + margin: 0; } + ul li { + list-style: none; } + +p { + padding: 0; + margin: 0; } + +footer { + position: relative; + width: 100%; } + +* { + -webkit-box-sizing: border-box; + box-sizing: border-box; } + +.section { + min-height: 40.625rem; + height: 100vh; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } + +.btn { + padding: 0.625rem 0.9375rem; + background: #e45028; + text-decoration: none; + text-transform: uppercase; + border-radius: 0.3125rem; + color: #fff; + display: -webkit-inline-box; + display: -ms-inline-flexbox; + display: inline-flex; + font-family: 'Ubuntu', Helvetica, sans-serif; + font-weight: 500; + font-size: 0.8125rem; } + .btn:hover { + background-color: #cc3333; } + +.sectiontitle { + font-size: 4.5rem; + color: #f9b43b; + font-family: 'Gagalin-Regular', Helvetica, sans-serif; + margin-bottom: 1.5625rem; } + .sectiontitle_white { + color: #fff; } + @media screen and (max-width: 768px) { + .sectiontitle { + font-size: 4.0625rem; } } + @media screen and (max-width: 480px) { + .sectiontitle { + font-size: 3.96875rem; } } + +.fixed-menu { + position: fixed; + top: 5rem; + right: 2.8125rem; + width: 1.125rem; + height: 10.625rem; } + @media screen and (max-width: 768px) { + .fixed-menu { + display: none; } } + @media screen and (max-width: 480px) { + .fixed-menu { + display: none; } } + +ul.fixed-menu__list { + list-style: none; } + +.fixed-menu__item { + display: inline-block; + content: ""; + width: 1rem; + height: 1rem; + border: 0.0625rem solid transparent; + background-color: transparent; + position: relative; + border-radius: 50%; } + .fixed-menu__item:hover { + border: 0.0625rem solid #fff; } + .fixed-menu__item--active { + border: 0.0625rem solid #fff; } + +.fixed-menu__link { + display: inline-block; + content: ""; + border-radius: 50%; + width: 0.375rem; + height: 0.375rem; + position: absolute; + background-color: #fff; + top: 50%; + left: 50%; + -webkit-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); } + +.hero { + background: url("../img/bg/hero-bg.png") center center no-repeat; + background-size: cover; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; } + +.header { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } + +.header__btns { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + margin-left: auto; } + +.nav__list { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + margin-right: 0.625rem; } + @media screen and (max-width: 768px) { + .nav__list { + display: none; } } + @media screen and (max-width: 480px) { + .nav__list { + display: none; } } + +.nav__item { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } + .nav__item:after { + content: ""; + display: block; + width: 0.25rem; + height: 0.25rem; + border-radius: 50%; + background: #fff; + margin: 0rem 1rem; } + .nav__item:last-child:after { + display: none; } + +.nav__link { + color: #fff; + font-family: 'Ubuntu', Helvetica, sans-serif; + font-weight: 500; + font-size: 0.8125rem; + text-decoration: none; + text-transform: uppercase; } + +.hamburger-menu__link { + vertical-align: middle; + position: relative; + height: 1.375rem; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + margin-left: 1.875rem; + display: none; } + @media screen and (max-width: 768px) { + .hamburger-menu__link { + display: -webkit-box; + display: -ms-flexbox; + display: flex; } } + @media screen and (max-width: 480px) { + .hamburger-menu__link { + display: -webkit-box; + display: -ms-flexbox; + display: flex; } } + +.hamburger-menu__link_bars, .hamburger-menu__link_bars:before, .hamburger-menu__link_bars:after { + background: #fff; + width: 1.5rem; + height: 0.3125rem; + border-radius: 0.1875rem; } +.hamburger-menu__link_bars:before, .hamburger-menu__link_bars:after { + content: ""; + display: block; + position: absolute; } +.hamburger-menu__link_bars:before { + top: 0; } +.hamburger-menu__link_bars:after { + bottom: 0; } + +.hero__present { + display: -webkit-box; + display: -ms-flexbox; + display: flex; } + @media screen and (max-width: 768px) { + .hero__present { + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + padding: 0 20%; + text-align: center; } } + @media screen and (max-width: 480px) { + .hero__present { + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + padding: 0; } } + +.hero__container { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + padding-bottom: 15%; } + +.hero__left, +.hero__right { + float: left; + width: 50%; } + @media screen and (max-width: 768px) { + .hero__left, + .hero__right { + float: none; + width: auto; } } + @media screen and (max-width: 480px) { + .hero__left, + .hero__right { + float: none; + width: auto; } } + +.hero__right { + padding-top: 7.1875rem; } + @media screen and (max-width: 768px) { + .hero__right { + padding-top: 0; } } + @media screen and (max-width: 480px) { + .hero__right { + padding-top: 0; } } + +.hero__desc { + font-size: 4.0625rem; + color: #fff; + font-family: 'Lifehack-Medium'; + text-transform: lowercase; + line-height: 1em; } + @media screen and (max-width: 480px) { + .hero__desc { + font-size: 3.375rem; } } + +.hero__img { + display: inline-block; + position: relative; + left: 50%; + -webkit-transform: translateX(-50%); + transform: translateX(-50%); + max-width: 100%; + max-height: 100%; } + +.hero__arrow { + position: absolute; + display: block; + bottom: 1.25rem; + left: 50%; + width: 3.75rem; + height: 3.75rem; + -webkit-transform: translateX(-50%); + transform: translateX(-50%); + -webkit-transition: .3s; + transition: .3s; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } + @media screen and (max-width: 480px) { + .hero__arrow { + bottom: 2.5rem; } } + +.arrow__icon { + height: 2.5rem; + width: 2.5rem; + -webkit-transition: .3s; + transition: .3s; + fill: #fff; } + +.best { + background: url("../img/bg/best.png") center center no-repeat; + background-size: cover; + text-align: center; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } + .best .sectiontitle { + color: #2f3234; + margin-bottom: 5.3125rem; + margin-top: 5rem; } + +.best__list { + display: -webkit-box; + display: -ms-flexbox; + display: flex; } + @media screen and (max-width: 480px) { + .best__list { + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; } } + +.best__item { + margin-bottom: 0.9375rem; + padding: 0 0.9375rem; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-flex: 1; + -ms-flex: 1; + flex: 1; } + @media screen and (max-width: 480px) { + .best__item { + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + margin-bottom: 3.125rem; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } } + +.best__pic { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; } + @media screen and (max-width: 480px) { + .best__pic { + margin-right: 1.875rem; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } } + +.best__icon { + width: 90%; + height: 6.25rem; + margin-bottom: 2.1875rem; } + .best__icon svg { + max-width: 95%; } + @media screen and (max-width: 480px) { + .best__icon { + width: 6.25rem; + height: 6.25rem; } } + +.best__title { + font-family: 'Lifehack-Medium'; + font-size: 1.50625rem; + color: #2f3234; + margin-bottom: 1.25rem; } + @media screen and (max-width: 480px) { + .best__title { + text-align: left; } } + +.best__desc { + font-family: 'Ubuntu', Helvetica, sans-serif; + font-weight: 300; + font-size: 0.87688rem; } + @media screen and (max-width: 480px) { + .best__desc { + text-align: left; } } + +.team { + background: url("../img/bg/team.png") center center no-repeat; + background-size: cover; + position: relative; } + .team .section-title { + margin-bottom: 5.625rem; } + +.team__section { + position: absolute; + top: 0; + right: 0; + bottom: 0; + width: 50%; + background: rgba(47, 50, 52, 0.93); + padding: 8% 2% 0 8%; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; + -webkit-box-align: start; + -ms-flex-align: start; + align-items: flex-start; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; } + @media screen and (max-width: 768px) { + .team__section { + width: 100%; + padding: 0; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } } + +@media screen and (max-width: 768px) { + .team__content { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } } + +@media screen and (max-width: 768px) { + .team-acco { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } } + +.team-acco__item { + margin-bottom: 2.5rem; } + .team-acco__item:last-child { + margin-bottom: 0; } + .team-acco__item.active .team-acco__content { + height: auto; } + .team-acco__item.active .team-acco__title { + color: #f9b43b; } + .team-acco__item.active .team-acco__title:before { + -webkit-transform: rotate(180deg); + transform: rotate(180deg); } + @media screen and (max-width: 768px) { + .team-acco__item { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } } + +.team-acco__content { + width: 80%; } + @media screen and (max-width: 768px) { + .team-acco__content { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } } + +.team-acco__title { + font-size: 0.875rem; + color: #fff; + font-family: 'Gagalin-Regular', Helvetica, sans-serif; + text-decoration: none; + margin-bottom: 1.25rem; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + position: relative; } + .team-acco__title:before { + content: ""; + width: 0rem; + height: 0rem; + border: 0.5625rem solid transparent; + border-top-color: #f9b43b; + border-bottom: none; + margin-right: 10px; } + @media screen and (max-width: 768px) { + .team-acco__title { + font-size: 1.5625rem; } } + @media screen and (max-width: 480px) { + .team-acco__title { + font-size: 1.5625rem; } } + +.team-acco__content { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + overflow: hidden; + height: 0; } + +.team-acco__avatar { + width: 6.25rem; + height: 6.25rem; + border-radius: 50%; + overflow: hidden; + position: relative; } + +.team-acco__avatar-pic { + position: absolute; + top: 50%; + left: 50%; + -webkit-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); } + +.team-acco__desc { + margin-left: 1.25rem; + width: 18.125rem; } + @media screen and (max-width: 768px) { + .team-acco__desc { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + width: auto; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + text-align: center; + margin-left: initial; } } + +.team-acco__desc-occ { + font-size: 0.875rem; + font-family: 'Ubuntu', Helvetica, sans-serif; + font-weight: bold; + color: #fff; + margin-bottom: 1.125rem; } + @media screen and (max-width: 768px) { + .team-acco__desc-occ { + text-align: center; } } + +.team-acco__desc-text { + font-size: 0.875rem; + font-family: 'Ubuntu', Helvetica, sans-serif; + font-weight: 300; + color: #fff; + -ms-flex-wrap: wrap; + flex-wrap: wrap; } + +.reviews { + background-color: #2f3234; + background-size: cover; } + +.reviews__list { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + width: 100%; + height: 100%; + -ms-flex-wrap: wrap; + flex-wrap: wrap; } + +.reviews__item { + width: 25%; + height: 50%; + overflow: hidden; + position: relative; } + .reviews__item:hover .reviews__hover { + opacity: 1; + -webkit-transform: scale(1); + transform: scale(1); } + @media screen and (max-width: 768px) { + .reviews__item { + width: 50%; + height: 25%; } } + +.reviews__hover { + position: absolute; + left: 0; + right: 0; + bottom: 0; + top: 0; + background: rgba(47, 50, 52, 0.7); + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + opacity: 0; + -webkit-transform: scale(0.7); + transform: scale(0.7); + -webkit-transition: .4s; + transition: .4s; } + +.reviews__hover-content { + width: 80%; } + @media screen and (max-width: 768px) { + .reviews__hover-content { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + padding-top: 0.625rem; + padding-bottom: 0.625rem; } } + +.reviews__title { + color: #fff; + font-family: 'Gagalin-Regular', Helvetica, sans-serif; + font-size: 0.875rem; + margin-bottom: 1.875rem; } + @media screen and (max-width: 768px) { + .reviews__title { + margin-bottom: 0.625rem; } } + +.reviews__text { + color: #fff; + font-family: 'Ubuntu', Helvetica, sans-serif; + font-weight: 300; + font-size: 0.875rem; + width: 13.75rem; + line-height: 1.5rem; } + @media screen and (max-width: 768px) { + .reviews__text { + text-align: center; } } + @media screen and (max-width: 480px) { + .reviews__text { + display: none; } } + +.reviews__btn { + padding-top: 1.25rem; } + @media screen and (max-width: 768px) { + .reviews__btn { + padding-top: 0.625rem; } } + +.reviews__item-photo { + position: absolute; + background-position: center center; + top: 50%; + left: 50%; + -webkit-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); + min-width: 100%; + min-height: 100%; + -webkit-filter: grayscale(100%); + filter: grayscale(100%); } + +.menu { + background: url("../img/bg/menu.png") center center no-repeat; + background-size: cover; + position: relative; } + +.menu__title { + position: absolute; + top: 10%; + left: 10%; } + +.menu-acco { + position: absolute; + right: 0; + top: 0; + bottom: 0; + display: -webkit-box; + display: -ms-flexbox; + display: flex; } + +.menu-acco__link { + text-decoration: none; + width: 5rem; + height: 100%; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: end; + -ms-flex-pack: end; + justify-content: flex-end; + position: relative; } + +.menu-acco__link-text { + font-size: 2.5rem; + color: #fff; + font-family: 'Gagalin-Regular', Helvetica, sans-serif; + text-align: center; + white-space: nowrap; + position: absolute; + -webkit-transform: rotate(-90deg) translateY(-50%); + transform: rotate(-90deg) translateY(-50%); + -webkit-transform-origin: 0 0; + transform-origin: 0 0; + left: 50%; + top: 70%; + margin-top: -1.25rem; } + +.menu-acco__item { + height: 100%; + display: -webkit-box; + display: -ms-flexbox; + display: flex; } + .menu-acco__item.active .menu-acco__content { + display: block; } + .menu-acco__item.active .menu-acco__link-text { + color: #f9b43b; } + +.menu-acco__content { + height: 0; + overflow: hidden; + background-color: rgba(47, 50, 52, 0.93); + display: none; + font-family: 'Ubuntu', Helvetica, sans-serif; + font-weight: 300; + font-size: 0.875rem; + color: #fff; + padding: 3.75rem 1.875rem; + width: 33.75rem; + line-height: 1.8; } + @media screen and (max-width: 480px) { + .menu-acco__content { + width: 25rem; } } + +.menu-acco__link-pic { + background-position: center center; + background-repeat: no-repeat; + background-size: cover; } + +.burgers { + background: #f9b43b; + /* FF3.6-15 */ + /* Chrome10-25,Safari5.1-6 */ + background: -webkit-gradient(linear, left top, left bottom, from(#f9b43b), color-stop(51%, #ec9139), to(#f9b43b)); + background: linear-gradient(to bottom, #f9b43b 0%, #ec9139 51%, #f9b43b 100%); + /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9b43b', endColorstr='#f9b43b', GradientType=0); + /* IE6-9 */ + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } + +.burgers__content { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + margin-top: 20%; + margin-bottom: 20%; } + +.content_left { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + position: relative; } + +.content_right { + padding-bottom: 2.5rem; } + .content_right .section-title { + line-height: 4rem; + margin-bottom: 2.5rem; } + +.burgers__button { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + margin-right: auto; + position: relative; } + +.burgers-box__hover { + border-radius: 0.3125rem; + background-color: rgba(254, 248, 236, 0.9); + display: none; } + +.burgers-box { + width: 5.625rem; + height: 5.625rem; + background-color: #f08c33; + border-radius: 0.3125rem; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + position: relative; } + .burgers-box:hover { + background-color: #cc3333; } + .burgers-box:hover + .burgers-box__hover { + display: block; + position: absolute; + left: 5.625rem; } + +.burgers-box__icon { + width: 2.875rem; + height: 2.625rem; } + +.burgers-box__title { + color: #fff; + font-family: 'Gagalin-Regular', Helvetica, sans-serif; + font-size: 0.875rem; + margin-top: 0.5rem; } + +.hover__list { + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } + +.hover__item { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + margin-bottom: 0.9375rem; + margin-left: 1.25rem; } + .hover__item:first-child { + margin-top: 1.125rem; } + +.hover__icon { + width: 2.8125rem; + height: 2.8125rem; + margin-right: 1.5625rem; } + +.hover__desc { + margin-right: 4.1875rem; + font-size: 0.875rem; + font-family: 'Ubuntu', Helvetica, sans-serif; + font-weight: 500; + color: #2f3234; } + +.hover__amount { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -ms-flex-wrap: nowrap; + flex-wrap: nowrap; + margin-right: 1.25rem; + margin-left: auto; } + +.callories__icon { + width: 3.75rem; + height: 3.75rem; } + +.callories__img { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + margin-top: auto; } + +.burger__callories { + position: absolute; + left: 0; + top: 100%; } + +.callories__img { + position: relative; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: start; + -ms-flex-pack: start; + justify-content: flex-start; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; } + +.callories__ammount { + position: absolute; + top: 45%; + left: 50%; + -webkit-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); + color: #fff; + font-size: 1.25rem; + font-family: 'Gagalin-Regular', Helvetica, sans-serif; + opacity: .5; } + +.callories__mesure { + color: #fff; + font-size: 0.875rem; + font-family: 'Gagalin-Regular', Helvetica, sans-serif; + opacity: .5; } + +.content__desc { + color: #fff; + font-size: 0.875rem; + font-family: 'Ubuntu', Helvetica, sans-serif; + font-weight: 300; } + +.cost__price { + color: #cc3333; + font-size: 4.5rem; + font-family: 'Gagalin-Regular', Helvetica, sans-serif; + margin-right: 0.625rem; } + +.cost__mesure { + color: #cc3333; + font-size: 1.875rem; + font-family: 'Gagalin-Regular', Helvetica, sans-serif; + margin-right: 1.875rem; + margin-top: 1.875rem; } + +.content__cost { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + margin-top: 3.125rem; } + +.content__btn { + margin-top: 2.5rem; } + +.arrow { + width: 1.875rem; + height: 1.875rem; } + .arrow.arrow_left { + position: absolute; + top: 50%; + left: -10%; + -webkit-transform: rotate(90deg); + transform: rotate(90deg); } + .arrow.arrow_right { + position: absolute; + top: 50%; + right: -10%; + -webkit-transform: rotate(-90deg); + transform: rotate(-90deg); } + +.order { + background: url("../img/bg/order.png") center center no-repeat; + background-size: cover; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; } + .order .sectiontitle { + text-align: center; + margin-bottom: 5.625rem; + margin-top: 5.625rem; } + @media screen and (max-width: 768px) { + .order .sectiontitle { + margin-bottom: 3.125rem; } } + +.order__form { + margin-left: -5%; + display: -webkit-box; + display: -ms-flexbox; + display: flex; } + @media screen and (max-width: 768px) { + .order__form { + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } } + +.order__form-col { + width: 45%; + margin-left: 5%; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; } + @media screen and (max-width: 480px) { + .order__form-col { + width: 90%; } } + +.order__form-row { + margin-bottom: 1rem; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; } + +.order__form-text { + margin-bottom: 0.4375rem; + font-family: 'Ubuntu', Helvetica, sans-serif; + font-weight: 300; + color: #fff; + font-size: 0.875rem; } + +.order__form-input { + font-size: 0.875rem; + padding: 0.3125rem 0.625rem; + border: 0.0625rem solid #d1cfcb; + border-radius: 0.3125rem; + width: 100%; } + +.order__form-block { + width: 100%; + margin-right: 0.625rem; } + +.order__form-row { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + margin-left: -0.625rem; } + @media screen and (max-width: 480px) { + .order__form-row { + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; } } + +.order__form-input_textarea { + height: 6.875rem; + resize: none; } + +.order__radio { + white-space: nowrap; + margin-right: 1.25rem; + cursor: pointer; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } + +.order__radio-elem { + visibility: hidden; } + +.order__radio-fake { + width: 1rem; + height: 1rem; + border-radius: 50%; + background: #fff; + position: relative; } + .order__radio-fake:after { + content: ""; + display: block; + position: absolute; + width: 0rem; + height: 0rem; + border-radius: 50%; + top: 50%; + left: 50%; + -webkit-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); + background-color: #cc3333; + -webkit-transition: .3s; + transition: .3s; } + +.order__radio-elem:checked + .order__radio-fake:after { + width: 0.5rem; + height: 0.5rem; } + +.order__radio-title { + font-size: 0.875rem; + color: #fff; + margin-left: 0.625rem; + font-family: 'Ubuntu', Helvetica, sans-serif; + font-weight: 300; } + +.order__radio_checkbox .order__radio-fake { + border-radius: 0rem; } +.order__radio_checkbox .order__radio-elem + .order__radio-fake:after { + background: transparent; } +.order__radio_checkbox .order__radio-elem:checked + .order__radio-fake:after { + background: url("../../icons/check.svg") 50% no-repeat transparent; + background-size: contain; + width: 0.6875rem; + height: 0.5625rem; } + +.order__form-buttons { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; + -ms-flex-wrap: wrap; + flex-wrap: wrap; + margin-left: -3%; } + +.order__form-button { + margin-right: 1.25rem; + border: 0; + background: #e35028; + font-size: 0.8125rem; + text-transform: uppercase; + border-radius: 0.3125rem; + color: #fff; + font-family: 'Ubuntu', Helvetica, sans-serif; + font-weight: 500; + padding: 0.625rem 0.9375rem; + cursor: pointer; + width: 6.0625rem; + height: 2.1875rem; + margin-left: 3%; } + @media screen and (max-width: 768px) { + .order__form-button { + margin-top: 0.625rem; + margin-right: -0.3125rem; } } + +.order__form-button_reset { + padding-left: 0; + padding-right: 0; + text-transform: none; + background: transparent; } + +.map { + background: url("../img/content/map.png") center center no-repeat; + background-size: cover; + position: relative; } + +.footer { + background: url("../img/bg/footer.png") center center no-repeat; + background-size: cover; + position: absolute; + bottom: 0; + left: 0; + right: 0; + padding: 0.625rem 0; + height: 3.75rem; } + @media screen and (max-width: 480px) { + .footer { + height: 7.5rem; } } + +.footer__container { + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-direction: row; + flex-direction: row; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } + @media screen and (max-width: 480px) { + .footer__container { + -webkit-box-orient: vertical; + -webkit-box-direction: normal; + -ms-flex-direction: column; + flex-direction: column; } } + +.footer__col { + width: 50%; + margin-bottom: 0.8125rem; } + +.footer__adress { + margin-top: 0.8125rem; + color: #fff; + font-size: 0.875rem; + font-family: 'Ubuntu', Helvetica, sans-serif; + font-weight: 300; } + @media screen and (max-width: 480px) { + .footer__adress { + text-align: center; } } + +.footer__phone { + margin-top: 0.3125rem; } + @media screen and (max-width: 480px) { + .footer__phone { + text-align: center; + margin-bottom: 0.625rem; } } + +.footer__phone-icon { + margin-right: 0.625rem; + width: 0.75rem; + height: 0.75rem; } + +.footer__phone-link { + color: #e45028; + font-size: 0.875rem; + font-family: 'Ubuntu', Helvetica, sans-serif; + font-weight: bold; + text-decoration: none; } + +.footer__col_right { + text-align: right; + margin-bottom: 0; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: end; + -ms-flex-pack: end; + justify-content: flex-end; } + @media screen and (max-width: 480px) { + .footer__col_right { + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + margin-bottom: 0.625rem; } } + +.socials { + position: relative; + top: 50%; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; } + +.socials__item { + margin-left: 1.125rem; } + +.socials__link { + max-width: 1.4375rem; + max-height: 1.25rem; + opacity: .3; + -webkit-transition: .3s; + transition: .3s; } + .socials__link:hover { + opacity: 1; } + +.socials__link-icon { + height: 1.25rem; + width: 1.25rem; } + +/*# sourceMappingURL=main.css.map */ \ No newline at end of file diff --git a/css/main.css.map b/css/main.css.map index 44efa86..9d7d169 100644 --- a/css/main.css.map +++ b/css/main.css.map @@ -1,7 +1,7 @@ { "version": 3, -"mappings": "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", -"sources": ["../scss/normalize.scss","../scss/layout/fixed.scss","../scss/layout/layout.scss","../scss/layout/variables.scss","../scss/layout/fonts.scss","../scss/components/main.scss","../scss/components/best.scss","../scss/components/reviews.scss"], +"mappings": "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", +"sources": ["_misc/normalize.scss","_misc/fonts.scss","_misc/media.scss","_misc/layout.scss","main.scss","blocks/common/btn.scss","blocks/common/section-title.scss","blocks/common/fixed-menu.scss","blocks/hero.scss","blocks/best.scss","blocks/team.scss","blocks/reviews.scss","blocks/menu.scss","blocks/burgers.scss","blocks/order.scss","blocks/map.scss","blocks/footer.scss"], "names": [], "file": "main.css" } diff --git a/css/main.scss b/css/main.scss new file mode 100644 index 0000000..59dff86 --- /dev/null +++ b/css/main.scss @@ -0,0 +1,33 @@ +//colors +$orange: #e45028; +$yellow: #f9b43b; +$black: #2f3234; +$red: #cc3333; +$white:#fff; +$darkGrey: #2f3234; +//resolutions +$desktop:1200px; +$laptop:992px; +$tablets:768px; +$phones:480px; +//normalize +@import "_misc/normalize"; +// setups +@import "_misc/mixins"; +@import "_misc/media"; +@import "_misc/fonts"; +@import "_misc/layout"; +//common +@import "blocks/common/btn"; +@import "blocks/common/section-title"; +@import "blocks/common/fixed-menu"; +// blocks +@import "blocks/hero"; +@import "blocks/best"; +@import "blocks/team"; +@import "blocks/reviews"; +@import "blocks/menu"; +@import "blocks/burgers"; +@import "blocks/order"; +@import "blocks/map"; +@import "blocks/footer"; \ No newline at end of file diff --git a/fonts/Gagalin-Regular.woff b/fonts/Gagalin-Regular.woff new file mode 100644 index 0000000..239a057 Binary files /dev/null and b/fonts/Gagalin-Regular.woff differ diff --git a/fonts/Lifehack-Medium.woff b/fonts/Lifehack-Medium.woff new file mode 100644 index 0000000..f4166c9 Binary files /dev/null and b/fonts/Lifehack-Medium.woff differ diff --git a/fonts/Ubuntu-Light.woff b/fonts/Ubuntu-Light.woff new file mode 100644 index 0000000..05e1288 Binary files /dev/null and b/fonts/Ubuntu-Light.woff differ diff --git a/fonts/Ubuntu-Medium.woff b/fonts/Ubuntu-Medium.woff new file mode 100644 index 0000000..a23b349 Binary files /dev/null and b/fonts/Ubuntu-Medium.woff differ diff --git a/fonts/gagalin-regular-webfont.svg b/fonts/gagalin-regular-webfont.svg deleted file mode 100644 index ecec28e..0000000 --- a/fonts/gagalin-regular-webfont.svg +++ /dev/null @@ -1,429 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/fonts/gagalin-regular-webfont.woff b/fonts/gagalin-regular-webfont.woff deleted file mode 100644 index d01a79b..0000000 Binary files a/fonts/gagalin-regular-webfont.woff and /dev/null differ diff --git a/fonts/lifehack_medium-webfont.svg b/fonts/lifehack_medium-webfont.svg deleted file mode 100644 index 429c79d..0000000 --- a/fonts/lifehack_medium-webfont.svg +++ /dev/null @@ -1,1835 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/fonts/lifehack_medium-webfont.woff b/fonts/lifehack_medium-webfont.woff deleted file mode 100644 index 41843d6..0000000 Binary files a/fonts/lifehack_medium-webfont.woff and /dev/null differ diff --git a/fonts/ubuntu-b-webfont.svg b/fonts/ubuntu-b-webfont.svg deleted file mode 100644 index 9e843f9..0000000 --- a/fonts/ubuntu-b-webfont.svg +++ /dev/null @@ -1,4276 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/fonts/ubuntu-b-webfont.woff b/fonts/ubuntu-b-webfont.woff index 86f794e..c7baf92 100644 Binary files a/fonts/ubuntu-b-webfont.woff and b/fonts/ubuntu-b-webfont.woff differ diff --git a/fonts/ubuntu-light-webfont.svg b/fonts/ubuntu-light-webfont.svg deleted file mode 100644 index 2f93ca4..0000000 --- a/fonts/ubuntu-light-webfont.svg +++ /dev/null @@ -1,3212 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/fonts/ubuntu-light-webfont.woff b/fonts/ubuntu-light-webfont.woff deleted file mode 100644 index 1434a1d..0000000 Binary files a/fonts/ubuntu-light-webfont.woff and /dev/null differ diff --git a/fonts/ubuntu-medium-webfont.svg b/fonts/ubuntu-medium-webfont.svg deleted file mode 100644 index 3d1a689..0000000 --- a/fonts/ubuntu-medium-webfont.svg +++ /dev/null @@ -1,3318 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/fonts/ubuntu-medium-webfont.woff b/fonts/ubuntu-medium-webfont.woff deleted file mode 100644 index 4a59547..0000000 Binary files a/fonts/ubuntu-medium-webfont.woff and /dev/null differ diff --git a/fonts/ubuntu-regular-webfont.svg b/fonts/ubuntu-regular-webfont.svg deleted file mode 100644 index 48f5c46..0000000 --- a/fonts/ubuntu-regular-webfont.svg +++ /dev/null @@ -1,3286 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/fonts/ubuntu-regular-webfont.woff b/fonts/ubuntu-regular-webfont.woff deleted file mode 100644 index 7458d56..0000000 Binary files a/fonts/ubuntu-regular-webfont.woff and /dev/null differ diff --git a/img/background/best.jpg b/img/background/best.jpg deleted file mode 100644 index de0e519..0000000 Binary files a/img/background/best.jpg and /dev/null differ diff --git a/img/background/main-bg.jpg b/img/background/main-bg.jpg deleted file mode 100644 index a8ea27b..0000000 Binary files a/img/background/main-bg.jpg and /dev/null differ diff --git a/img/bg/best.png b/img/bg/best.png new file mode 100644 index 0000000..bf1ea3f Binary files /dev/null and b/img/bg/best.png differ diff --git a/img/bg/footer.png b/img/bg/footer.png new file mode 100644 index 0000000..1a7c75d Binary files /dev/null and b/img/bg/footer.png differ diff --git a/img/bg/hero-bg.png b/img/bg/hero-bg.png new file mode 100644 index 0000000..0b8943d Binary files /dev/null and b/img/bg/hero-bg.png differ diff --git a/img/bg/menu.png b/img/bg/menu.png new file mode 100644 index 0000000..36dbe4a Binary files /dev/null and b/img/bg/menu.png differ diff --git a/img/bg/menu_diet.png b/img/bg/menu_diet.png new file mode 100644 index 0000000..0c7a462 Binary files /dev/null and b/img/bg/menu_diet.png differ diff --git a/img/bg/menu_meat.png b/img/bg/menu_meat.png new file mode 100644 index 0000000..243206f Binary files /dev/null and b/img/bg/menu_meat.png differ diff --git a/img/bg/menu_vegetarian.png b/img/bg/menu_vegetarian.png new file mode 100644 index 0000000..57fa121 Binary files /dev/null and b/img/bg/menu_vegetarian.png differ diff --git a/img/bg/order.png b/img/bg/order.png new file mode 100644 index 0000000..d276176 Binary files /dev/null and b/img/bg/order.png differ diff --git a/img/bg/team.png b/img/bg/team.png new file mode 100644 index 0000000..2e79178 Binary files /dev/null and b/img/bg/team.png differ diff --git a/img/content/black.png b/img/content/black.png new file mode 100644 index 0000000..0654d59 Binary files /dev/null and b/img/content/black.png differ diff --git a/img/content/cheeseburger.png b/img/content/cheeseburger.png new file mode 100644 index 0000000..3cd3cb4 Binary files /dev/null and b/img/content/cheeseburger.png differ diff --git a/img/content/chiken.png b/img/content/chiken.png new file mode 100644 index 0000000..94fd50e Binary files /dev/null and b/img/content/chiken.png differ diff --git a/img/content/map.png b/img/content/map.png new file mode 100644 index 0000000..0f2850c Binary files /dev/null and b/img/content/map.png differ diff --git a/img/content/sandwitch.png b/img/content/sandwitch.png new file mode 100644 index 0000000..c77389f Binary files /dev/null and b/img/content/sandwitch.png differ diff --git a/img/content/spicy.png b/img/content/spicy.png new file mode 100644 index 0000000..ea0fead Binary files /dev/null and b/img/content/spicy.png differ diff --git a/img/menues/1.png b/img/menues/1.png new file mode 100644 index 0000000..e5e5581 Binary files /dev/null and b/img/menues/1.png differ diff --git a/img/menues/2.png b/img/menues/2.png new file mode 100644 index 0000000..4b039a2 Binary files /dev/null and b/img/menues/2.png differ diff --git a/img/menues/3.png b/img/menues/3.png new file mode 100644 index 0000000..2550245 Binary files /dev/null and b/img/menues/3.png differ diff --git a/img/reviews/1.jpg b/img/reviews/1.jpg deleted file mode 100644 index 852ec95..0000000 Binary files a/img/reviews/1.jpg and /dev/null differ diff --git a/img/reviews/1.png b/img/reviews/1.png new file mode 100644 index 0000000..dd59a9e Binary files /dev/null and b/img/reviews/1.png differ diff --git a/img/reviews/2.jpg b/img/reviews/2.jpg deleted file mode 100644 index 614b2ab..0000000 Binary files a/img/reviews/2.jpg and /dev/null differ diff --git a/img/reviews/2.png b/img/reviews/2.png new file mode 100644 index 0000000..f347b92 Binary files /dev/null and b/img/reviews/2.png differ diff --git a/img/reviews/3.jpg b/img/reviews/3.jpg deleted file mode 100644 index 03119c7..0000000 Binary files a/img/reviews/3.jpg and /dev/null differ diff --git a/img/reviews/3.png b/img/reviews/3.png new file mode 100644 index 0000000..937e39b Binary files /dev/null and b/img/reviews/3.png differ diff --git a/img/reviews/4.jpg b/img/reviews/4.jpg deleted file mode 100644 index b9d4c24..0000000 Binary files a/img/reviews/4.jpg and /dev/null differ diff --git a/img/reviews/4.png b/img/reviews/4.png new file mode 100644 index 0000000..ad3363c Binary files /dev/null and b/img/reviews/4.png differ diff --git a/img/reviews/5.jpg b/img/reviews/5.jpg deleted file mode 100644 index c830097..0000000 Binary files a/img/reviews/5.jpg and /dev/null differ diff --git a/img/reviews/5.png b/img/reviews/5.png new file mode 100644 index 0000000..2ed598c Binary files /dev/null and b/img/reviews/5.png differ diff --git a/img/reviews/6.jpg b/img/reviews/6.jpg deleted file mode 100644 index 3beaaad..0000000 Binary files a/img/reviews/6.jpg and /dev/null differ diff --git a/img/reviews/6.png b/img/reviews/6.png new file mode 100644 index 0000000..707e281 Binary files /dev/null and b/img/reviews/6.png differ diff --git a/img/reviews/7.jpg b/img/reviews/7.jpg deleted file mode 100644 index 53efa26..0000000 Binary files a/img/reviews/7.jpg and /dev/null differ diff --git a/img/reviews/7.png b/img/reviews/7.png new file mode 100644 index 0000000..fccca14 Binary files /dev/null and b/img/reviews/7.png differ diff --git a/img/reviews/8.jpg b/img/reviews/8.jpg deleted file mode 100644 index e90d659..0000000 Binary files a/img/reviews/8.jpg and /dev/null differ diff --git a/img/reviews/8.png b/img/reviews/8.png new file mode 100644 index 0000000..693aa72 Binary files /dev/null and b/img/reviews/8.png differ diff --git a/img/team/1.png b/img/team/1.png new file mode 100644 index 0000000..6ec2b4f Binary files /dev/null and b/img/team/1.png differ diff --git a/index.html b/index.html index d90affe..49d6c84 100644 --- a/index.html +++ b/index.html @@ -3,214 +3,602 @@ - + My Burgers +
- -
-
-
-
-
-
-
+
+ + + +
+
+
Мы лучшие
+
    +
  • +
    + -
    -
    -
    Мы делаем
    -
    Натуральные бургеры
    -
    +
    +
    +
    + 100% свежее мясо +
    +
    +

    Драма представляет собой деструктивный цикл. Анапест представляет собой анапест. Ямб + неравномерен. +

    +
    +
    +
  • +
  • +
    + + +
    +
    +
    + Ручная сборка +
    +
    +

    Драма представляет собой деструктивный цикл. Анапест представляет собой анапест. Первое + полустишие притягивает сюжетный реформаторский пафос. +

    +
    +
    +
  • +
  • +
    + +
    +
    +
    + Натуральные ингредиенты +
    +
    +

    Драма представляет собой деструктивный цикл. Анапест представляет собой анапест. +

    +
    +
    +
  • +
-
- - - - - - -
-
-
Мы лучшие
-
+
+
+
+
+
+
+ + +
Состав
+
+
+
    +
  • + + +
    Говядина
    +
    300г
    +
  • +
  • + + +
    Булочки
    +
    100г
    +
  • +
  • + + +
    Зелень
    +
    70 г
    +
  • +
  • + + +
    Соус
    +
    150 г
    +
  • +
  • + + +
    Овощи
    +
    200 г
    +
  • +
  • + + +
    Сыр
    +
    80 г
    +
  • +
+
+
+
+ +
+
+
+ + +
1200
+
ккал
+
+
- -
  • -
    - +
    +
    dark beef burger
    +
    +

    + Ваш старый добрый знакомый, с рубленым бифштексом из 100% говядины, тремя кусочками нежнейшего сыра эмменталь, двумя помидорами, + луком, салатом и соусом гриль теперь с добавлением экзотического соуса чураско. +

    +
    +
    500
    +
    рублей
    + +
    +
    +
    +
    + +
  • +
    +
    +
    +
    +
    + команда
    -
    Ручная сборка
    -
    -

    Драма представляет собой деструктивный цикл. Анапест представляет собой анапест. Первое полустишие - притягивает сюжетный реформаторский пафос.

    +
      +
    • + Дэниэл Рэдклифф +
      +
      +
      + +
      +
      +
      +
      Оператор
      +
      +

      С радостью поможет подобрать идеальный бургер и оформить заказ. +

      +
      +
      +
      +
    • +
    • + Ричард Джеймс +
      +
      +
      + +
      +
      +
      +
      Оператор
      +
      +

      С радостью поможет подобрать идеальный бургер и оформить заказ. +

      +
      +
      +
      +
    • +
    • + Джейк Финн +
      +
      +
      + +
      +
      +
      +
      Оператор
      +
      +

      С радостью поможет подобрать идеальный бургер и оформить заказ. +

      +
      +
      +
      +
    • +
    • + Николай Иванов +
      +
      +
      + +
      +
      +
      +
      Оператор
      +
      +

      С радостью поможет подобрать идеальный бургер и оформить заказ. +

      +
      +
      +
      +
    • +
    +
    +
    +
    + -
    -
    +
    + +
    +
    +
    +
    Закажите доставку
    +
    +
    +
    +
    + + +
    +
    + +
    +
    + + + + +
    +
    +
    +
    + +
    +
    +
    + + +
    +
    + +
    +
    + + +
    +
    -
    - - -
    + + + +
    +
    + +