-
Notifications
You must be signed in to change notification settings - Fork 915
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
8ec91e5
commit 2a4447f
Showing
3 changed files
with
110 additions
and
3 deletions.
There are no files selected for viewing
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,73 @@ | ||
<p> | ||
features works! | ||
</p> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-md-12"> | ||
<h1 class="main-heading">Features</h1> | ||
</div> | ||
</div> | ||
<div class="row align-items-end"> | ||
<div class="col-sm-6 col-md-4"> | ||
<md-card> | ||
<md-card-title>Angular</md-card-title> | ||
<md-card-subtitle>Modern powerful framework</md-card-subtitle> | ||
<md-card-actions> | ||
<a md-button href="https://angular.io/docs/ts/latest/" target="_blank"> | ||
<i class="fa fa-book fa-lg"></i> Docs | ||
</a> | ||
<a md-button href="https://github.com/angular/angular" target="_blank"> | ||
<i class="fa fa-github fa-lg"></i> Github | ||
</a> | ||
</md-card-actions> | ||
</md-card> | ||
</div> | ||
<div class="col-sm-6 col-md-4"> | ||
<md-card> | ||
<md-card-title>ngRx</md-card-title> | ||
<md-card-subtitle>One way data flow powered by RxJS Observables</md-card-subtitle> | ||
<md-card-actions> | ||
<a md-button href="https://github.com/ngrx/platform" target="_blank"> | ||
<i class="fa fa-github fa-lg"></i> Github | ||
</a> | ||
</md-card-actions> | ||
</md-card> | ||
</div> | ||
<div class="col-sm-6 col-md-4"> | ||
<md-card> | ||
<md-card-title>Angular Material</md-card-title> | ||
<md-card-subtitle>Material design component library</md-card-subtitle> | ||
<md-card-actions> | ||
<a md-button href="https://material.angular.io/" target="_blank"> | ||
<i class="fa fa-book fa-lg"></i> Docs | ||
</a> | ||
<a md-button href="https://github.com/angular/material2/" target="_blank"> | ||
<i class="fa fa-github fa-lg"></i> Github | ||
</a> | ||
</md-card-actions> | ||
</md-card> | ||
</div> | ||
<div class="col-sm-6 col-md-4"> | ||
<md-card> | ||
<md-card-title>Themes</md-card-title> | ||
<md-card-subtitle>Flexible theming support for provided and custom components</md-card-subtitle> | ||
<md-card-actions> | ||
<a md-button href="https://material.angular.io/guide/theming" target="_blank"> | ||
<i class="fa fa-book fa-lg"></i> Docs | ||
</a> | ||
</md-card-actions> | ||
</md-card> | ||
</div> | ||
<div class="col-sm-6 col-md-4"> | ||
<md-card> | ||
<md-card-title>Bootstrap</md-card-title> | ||
<md-card-subtitle>Responsive layout from battle tested, world most famous UI library</md-card-subtitle> | ||
<md-card-actions> | ||
<a md-button href="https://v4-alpha.getbootstrap.com/layout/grid/" target="_blank"> | ||
<i class="fa fa-book fa-lg"></i> Docs | ||
</a> | ||
<a md-button href="https://github.com/twbs/bootstrap" target="_blank"> | ||
<i class="fa fa-github fa-lg"></i> Github | ||
</a> | ||
</md-card-actions> | ||
</md-card> | ||
</div> | ||
</div> | ||
</div> |
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
@import 'styles-variables'; | ||
|
||
.container { | ||
margin-top: 20px; | ||
} | ||
|
||
|
||
.main-heading { | ||
text-transform: uppercase; | ||
margin: 0 0 20px 0 | ||
} | ||
|
||
md-card { | ||
margin: 0 0 20px 0; | ||
|
||
md-card-subtitle { | ||
min-height: 60px; | ||
} | ||
|
||
@media (max-width: map-get($grid-breakpoints, sm)) { | ||
md-card-subtitle { | ||
min-height: auto; | ||
} | ||
} | ||
|
||
a { | ||
i { | ||
position: relative; | ||
top: -1px; | ||
left: -3px; | ||
} | ||
} | ||
} |
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