forked from vuematerial/vue-material
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIntroduction.vue
More file actions
83 lines (69 loc) · 2.29 KB
/
Introduction.vue
File metadata and controls
83 lines (69 loc) · 2.29 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<template>
<page-content page-title="Introduction">
<div class="main-content">
<div class="introduction">
<div class="button-actions">
<div class="example">
<img src="assets/vue-material-example.png" alt="Material Design">
</div>
<div class="introduction">Build well-crafted apps with Material Design and Vue 2</div>
<md-button class="md-primary md-raised" href="#/getting-started">Getting Started</md-button>
<md-button class="md-primary md-raised" href="https://github.com/marcosmoura/vue-material" target="_blank" rel="noopener">Github</md-button>
</div>
<div class="row">
<div class="column">
<h2 class="md-headline">Material Design</h2>
<p>Vue Material is lightweight framework built exactly according to the <a href="http://material.google.com" target="_blank" rel="noopener">Material Design</a> specs. Build powerful and well-designed web apps that can can fit on every screen.</p>
</div>
<div class="column">
<h2 class="md-headline">Fully-featured</h2>
<p>You can generate and use themes dynamically, use components on demand, take advantage of UI Elements and Components with an easy-to-use API and more…</p>
</div>
<div class="column">
<h2 class="md-headline">Compatible</h2>
<p>It aims to deliver a collection of reusable components and a series of UI Elements to build applications with support to all modern Web Browsers through Vue 2.0.</p>
</div>
</div>
</div>
</div>
</page-content>
</template>
<style lang="scss" scoped>
.introduction {
max-width: 960px;
margin: 0 auto;
}
.example {
margin-bottom: 24px;
overflow: hidden;
img {
margin: -45px auto;
display: block;
}
}
.button-actions {
margin-bottom: 16px;
text-align: center;
.introduction {
margin-bottom: .8em;
font-size: 20px;
line-height: 1.6em;
}
.md-button {
margin-left: 0;
color: #fff !important;
}
}
.row {
margin: 0 -10px;
display: flex;
flex-flow: row wrap;
}
.column {
margin: 0 10px;
flex: 1 1 30%;
@media (max-width: 640px) {
flex: 1 1 100%;
}
}
</style>