generated from mate-academy/gulp-template
-
Notifications
You must be signed in to change notification settings - Fork 773
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e76756d
commit 3d4febe
Showing
10 changed files
with
236 additions
and
31 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,192 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<html | ||
lang="en" | ||
class="page" | ||
> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta | ||
name="viewport" | ||
content="width=device-width, initial-scale=1.0" | ||
/> | ||
<title>Title</title> | ||
<link | ||
rel="preconnect" | ||
href="https://fonts.googleapis.com" | ||
/> | ||
<link | ||
rel="preconnect" | ||
href="https://fonts.gstatic.com" | ||
/> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap" | ||
rel="stylesheet" | ||
/> | ||
<link | ||
rel="stylesheet" | ||
href="./styles/main.scss" | ||
/> | ||
</head> | ||
<body> | ||
<h1>Hello Mate Academy</h1> | ||
<body class="page__body"> | ||
<header class="header"> | ||
<section class="top-bar"> | ||
<a | ||
href="#" | ||
class="top-bar__logo" | ||
> | ||
<img | ||
src="./images/top-bar/logo.svg" | ||
alt="logo" | ||
class="top-bar__logo-img" | ||
/> | ||
</a> | ||
<nav class="top-bar__nav nav"> | ||
<ul class="nav__list top-bar__list"> | ||
<li class="nav__item"> | ||
<a | ||
href="#" | ||
class="nav__link" | ||
> | ||
Products | ||
</a> | ||
</li> | ||
<li class="nav__item"> | ||
<a | ||
href="#" | ||
class="nav__link" | ||
> | ||
About Us | ||
</a> | ||
</li> | ||
<li class="nav__item"> | ||
<a | ||
href="#" | ||
class="nav__link" | ||
> | ||
Blog | ||
</a> | ||
</li> | ||
<li class="nav__item"> | ||
<a | ||
href="#" | ||
class="nav__link nav__link--contact-us" | ||
> | ||
<img | ||
src="./images/top-bar/phone.svg" | ||
alt="phone" | ||
class="nav__img" | ||
/> | ||
Contact us | ||
</a> | ||
</li> | ||
</ul> | ||
</nav> | ||
<a | ||
href="#menu" | ||
class="top-bar__menu" | ||
> | ||
<img | ||
src="./images/top-bar/icon-menu.svg" | ||
alt="menu" | ||
class="top-bar__menu-img" | ||
/> | ||
</a> | ||
</section> | ||
<div class="container"> | ||
<div class="header__main"> | ||
<p class="header__desc"> | ||
We bake your fantasies — croissants, cakes, cookies, and cupcakes. | ||
</p> | ||
<h1 class="header__title">Creative bakery</h1> | ||
<img | ||
src="./images/header/cookie.png" | ||
alt="cookie" | ||
class="header__img" | ||
/> | ||
<a | ||
href="#" | ||
class="header__link" | ||
> | ||
<img | ||
src="./images/header/icon-cookie.svg" | ||
alt="icon of cookie" | ||
class="header__link-img" | ||
/> | ||
Learn more | ||
</a> | ||
</div> | ||
</div> | ||
</header> | ||
<aside | ||
class="page__menu menu" | ||
id="menu" | ||
> | ||
<section class="top-bar menu__top-bar"> | ||
<a | ||
href="#" | ||
class="top-bar__logo" | ||
> | ||
<img | ||
src="./images/top-bar/logo.svg" | ||
alt="logo" | ||
class="top-bar__logo-img" | ||
/> | ||
</a> | ||
<a | ||
href="#" | ||
class="top-bar__close" | ||
> | ||
<img | ||
src="./images/top-bar/icon-close.svg" | ||
alt="menu" | ||
class="top-bar__close-img" | ||
/> | ||
</a> | ||
</section> | ||
<nav class="menu__nav nav"> | ||
<ul class="nav__list menu__list"> | ||
<li class="nav__item"> | ||
<a | ||
href="#" | ||
class="nav__link" | ||
> | ||
Products | ||
</a> | ||
</li> | ||
<li class="nav__item"> | ||
<a | ||
href="#" | ||
class="nav__link" | ||
> | ||
About Us | ||
</a> | ||
</li> | ||
<li class="nav__item"> | ||
<a | ||
href="#" | ||
class="nav__link" | ||
> | ||
Blog | ||
</a> | ||
</li> | ||
<li class="nav__item"> | ||
<a | ||
href="#" | ||
class="nav__link nav__link--contact-us" | ||
> | ||
<img | ||
src="./images/top-bar/phone.svg" | ||
alt="phone" | ||
class="nav__img" | ||
/> | ||
Contact us | ||
</a> | ||
</li> | ||
</ul> | ||
</nav> | ||
</aside> | ||
<main class="page__main"></main> | ||
<footer></footer> | ||
<script src="scripts/main.js"></script> | ||
</body> | ||
</html> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
@import 'utils/vars'; | ||
@import 'utils/mixins'; | ||
@import 'utils/extends'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,2 @@ | ||
@import 'utils'; | ||
@import 'fonts'; | ||
@import 'typography'; | ||
|
||
body { | ||
background: $c-gray; | ||
} | ||
@import './utils'; | ||
@import './blocks'; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,8 @@ | ||
$c-gray: #eee; | ||
$tablet-min-width: 640px; | ||
$desktop-min-width: 1024px; | ||
$desktopxl-min-width: 1280px; | ||
$main-bg-color: #FFEEFC; | ||
$main-color: #F9512E; | ||
$secondary-color: #1C1A26; | ||
$footer-title-color: #7F8096; | ||
$footer-color: #fff; |