This file contains hidden or 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
@import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro:300); | |
body { | |
font-family: 'Source Sans Pro', sans-serif; | |
background-color: #F6F8F8; | |
font-size: 1.1em; | |
//font-weight: bold; | |
} | |
.cf:before, .cf:after { |
This file contains hidden or 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
.card { | |
width: 50px; | |
height: 100px; | |
border: 1px solid #ccc; | |
border-radius: 4px; | |
float: left; | |
margin: 5px; | |
} |
This file contains hidden or 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
angular.module('app', []) | |
.controller('MainCtrl', MainCtrl) | |
.directive('checkBox', checkBox); | |
function checkBox() { | |
var directive = { | |
controller: Controller, | |
link: link, | |
restrict: 'E', | |
require: 'ngModel', |
This file contains hidden or 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
<ng-template #loginButtons> | |
<button (click)="login()">{{loginText}}</button> | |
<button (click)="signUp()">{{signUpText}}</button> | |
</ng-template> | |
<ng-template #logoText> | |
<h3>Super Awsome Logo Text</h3> | |
</ng-template> | |
<ng-template #logo> |
This file contains hidden or 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
<record-text>Regular text</record-text> | |
<record-text class="title">Title text</record-text> |
OlderNewer