-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (63 loc) · 5.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>GMD - Grid Material Design</title>
<meta name="description" content="">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- Template Basic Images Start-->
<meta property="og:image" content="path/to/image.jpg">
<link rel="shortcut icon" href="img/favicon/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="img/favicon/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="img/favicon/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="img/favicon/apple-touch-icon-114x114.png">
<!-- Load Styles-->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="css/style.css">
<!-- Mixins-->
</head>
<body>
<!-- The structure of the html document-->
<header>
<div class="header"><a class="header__title" href="index.html">grid <br>material <br>design</a>
<div class="header__link-group"><a class="header__link" href="https://github.com/gmdjs/gmdjs"><i class="material-icons">link</i><span>GitHub</span></a><a class="header__link" href="https://github.com/gmdjs/GMDJS/archive/master.zip"><i class="material-icons"></i><span>Download</span></a>
</div>
</div>
</header>
<section class="section section_white section_shadow">
<h2 class="section__title">GMD
</h2>
<div class="section__description">
<p>
GMD - это свободный набор инструментов для создания адаптивных сайтов в
<a class="section__link" href="https://material.io/guidelines/material-design/introduction.html">Material Design</a>
. GMD построен на препроцессоре Sass, поэтому перед работой с фреймворком желательно ознакомиться с препроцессором Sass на
<a class="section__link" href="https://sass-scss.ru/documentation/miksini/">официальном сайте</a>. Если вы плохо владеете препроцессором Sass, не беспокойтесь используя документацию вы быстро освоитесь с процессом.
</p>
<p>Основное отличие GMD от других популярных фреймворков, то что здесь вам не придется расставлять классы в вашей разметке. Вся магия происходит в стилях за счет миксинов. Вы задаете всего один класс с любым именем нужному тегу, после чего останется присвоить необходимые свойства с помощью миксинов. И ваша разметка всегда будет в чистоте.</p>
</div>
</section>
<section class="section section_white section_mt section_shadow">
<h2 class="section__title">Grid
</h2>
<div class="section__description section__description_mb">
<p>Grid - первая часть ферймворка это адаптивная сетка. Она будет привычна в освоении для тех людей, кто уже пользовался адаптивными сетками, но тут вы будете расставлять не классы в разметке, а миксинны с стилях. Эта сетка позволяет задать любое количество колонок, расстояние между ними и менять брейпоинты. И все это можно изменять в любое время, даже во время верстки.</p>
</div><a class="section__button section__button_raised" href="grid.html">documentation</a>
</section>
<section class="section section_white section_mt section_shadow">
<h2 class="section__title">Material
</h2>
<div class="section__description">
<p>Компоненты материал дизайна в разработке...</p>
</div>
</section>
<footer>
<div class="footer"><a class="footer__link" href="#"><i class="material-icons">github</i></a>
</div>
</footer>
<!-- Load Your Scripts-->
<link rel="stylesheet" href="css/libs.css">
<script src="js/common.js"></script>
</body>
</html>