forked from angular-app/angular-app
-
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.
Add less support and bootstrap 2.1.1 styles
- Loading branch information
1 parent
baf5e24
commit adf7273
Showing
44 changed files
with
5,736 additions
and
19 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
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
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,16 +1,33 @@ | ||
<html ng-app="app"> | ||
<!DOCTYPE html> | ||
<html lang="en" ng-app="app"> | ||
<head> | ||
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.1/angular.js"></script> | ||
<script type="text/javascript" src="angular-app.min.js"></script> | ||
<script type="text/javascript" src="<%= grunt.config.get('pkg.name') %>.min.js"></script> | ||
|
||
<!-- partials start --> | ||
<%= grunt.file.read('dist/partials.tpl.html') %> | ||
<!-- partials end --> | ||
<link rel="stylesheet" type="text/css" href="<%= grunt.config.get('pkg.name') %>.min.css"/> | ||
|
||
<!-- partials:start --> | ||
<%= grunt.file.read('dist/partials.tpl.html') %> | ||
<!-- partials:end --> | ||
</head> | ||
|
||
<body ng-controller="AppController"> | ||
Hello, {{user || 'Anonymous'}}! You are here: {{location.path()}} | ||
<hr> | ||
<div ng-view></div> | ||
|
||
<div class="navbar"> | ||
<div class="navbar-inner"> | ||
<a class="brand" href="#">Title</a> | ||
<ul class="nav"> | ||
<li class="active"><a href="#">Home</a></li> | ||
<li><a href="#">Link</a></li> | ||
<li><a href="#">Link</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
<ul class="breadcrumb"> | ||
<li class="active">{{location.path()}}</li> | ||
</ul> | ||
|
||
<div ng-view></div> | ||
|
||
</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,34 @@ | ||
// | ||
// Accordion | ||
// -------------------------------------------------- | ||
|
||
|
||
// Parent container | ||
.accordion { | ||
margin-bottom: @baseLineHeight; | ||
} | ||
|
||
// Group == heading + body | ||
.accordion-group { | ||
margin-bottom: 2px; | ||
border: 1px solid #e5e5e5; | ||
.border-radius(4px); | ||
} | ||
.accordion-heading { | ||
border-bottom: 0; | ||
} | ||
.accordion-heading .accordion-toggle { | ||
display: block; | ||
padding: 8px 15px; | ||
} | ||
|
||
// General toggle styles | ||
.accordion-toggle { | ||
cursor: pointer; | ||
} | ||
|
||
// Inner needs the styles because you can't animate properly with any styles on the element | ||
.accordion-inner { | ||
padding: 9px 15px; | ||
border-top: 1px solid #e5e5e5; | ||
} |
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,65 @@ | ||
// | ||
// Alerts | ||
// -------------------------------------------------- | ||
|
||
|
||
// Base styles | ||
// ------------------------- | ||
|
||
.alert { | ||
padding: 8px 35px 8px 14px; | ||
margin-bottom: @baseLineHeight; | ||
text-shadow: 0 1px 0 rgba(255,255,255,.5); | ||
background-color: @warningBackground; | ||
border: 1px solid @warningBorder; | ||
.border-radius(4px); | ||
color: @warningText; | ||
} | ||
.alert h4 { | ||
margin: 0; | ||
} | ||
|
||
// Adjust close link position | ||
.alert .close { | ||
position: relative; | ||
top: -2px; | ||
right: -21px; | ||
line-height: @baseLineHeight; | ||
} | ||
|
||
|
||
// Alternate styles | ||
// ------------------------- | ||
|
||
.alert-success { | ||
background-color: @successBackground; | ||
border-color: @successBorder; | ||
color: @successText; | ||
} | ||
.alert-danger, | ||
.alert-error { | ||
background-color: @errorBackground; | ||
border-color: @errorBorder; | ||
color: @errorText; | ||
} | ||
.alert-info { | ||
background-color: @infoBackground; | ||
border-color: @infoBorder; | ||
color: @infoText; | ||
} | ||
|
||
|
||
// Block alerts | ||
// ------------------------- | ||
|
||
.alert-block { | ||
padding-top: 14px; | ||
padding-bottom: 14px; | ||
} | ||
.alert-block > p, | ||
.alert-block > ul { | ||
margin-bottom: 0; | ||
} | ||
.alert-block p + p { | ||
margin-top: 5px; | ||
} |
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,24 @@ | ||
// | ||
// Breadcrumbs | ||
// -------------------------------------------------- | ||
|
||
|
||
.breadcrumb { | ||
padding: 8px 15px; | ||
margin: 0 0 @baseLineHeight; | ||
list-style: none; | ||
background-color: #f5f5f5; | ||
.border-radius(4px); | ||
li { | ||
display: inline-block; | ||
.ie7-inline-block(); | ||
text-shadow: 0 1px 0 @white; | ||
} | ||
.divider { | ||
padding: 0 5px; | ||
color: #ccc; | ||
} | ||
.active { | ||
color: @grayLight; | ||
} | ||
} |
Oops, something went wrong.