-
Notifications
You must be signed in to change notification settings - Fork 0
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
e28bfcf
commit 7802978
Showing
6 changed files
with
48 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
|
||
// Converted Variables | ||
|
||
|
||
// Custom Media Query Variables | ||
|
||
|
||
[class*="col-"] { | ||
padding-top: 15px; | ||
padding-bottom: 15px; | ||
background-color: #eee; | ||
background-color: rgba(86,61,124,.15); | ||
border: 1px solid #ddd; | ||
border: 1px solid rgba(86,61,124,.2); | ||
} |
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,15 @@ | ||
<html> | ||
<head> | ||
<title>Beautiful Angular</title> | ||
<link rel="stylesheet" href="vendor/css/bootstrap.min.css"> | ||
<link rel="stylesheet" href="css/app.css"> | ||
<script src="js/app.js"></script> | ||
</head> | ||
<body ng-app='beautiful'> | ||
<section ng-controller='HomeController'> | ||
<h1>{{ heading() }}</h1> | ||
|
||
<input type='text' ng-model='name'> | ||
</section> | ||
</body> | ||
</html> |
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,6 @@ | ||
// Angular is defined as window.angular upon require | ||
require('angular'); | ||
|
||
window.app = angular.module('beautiful', []); | ||
|
||
require('./controllers/home'); |
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,7 @@ | ||
app.controller('HomeController', ['$scope', function($scope) { | ||
$scope.name = 'Angular'; | ||
|
||
$scope.heading = function() { | ||
return 'Hello Beautiful World of ' + $scope.name; | ||
}; | ||
}]); |
Large diffs are not rendered by default.
Oops, something went wrong.