Base of project created

This commit is contained in:
Sebastian Seedorf
2016-01-26 18:24:31 +01:00
parent 89a8e5403e
commit 01f4a0cd49
933 changed files with 171161 additions and 0 deletions

37
node_modules/jade-bootstrap/components/panels.jade generated vendored Normal file
View File

@@ -0,0 +1,37 @@
//- panel
mixin panel(type,title)
.panel(class="panel-#{type}")
.panel-heading
h3.panel-title= title
.panel-body
block
//- panel-default
mixin panel-default(title)
+panel("default",title)
block
//- panel-primary
mixin panel-primary(title)
+panel("primary",title)
block
//- panel-success
mixin panel-success(title)
+panel("success",title)
block
//- panel-info
mixin panel-info(title)
+panel("info",title)
block
//- panel-warning
mixin panel-warning(title)
+panel("warning",title)
block
//- panel-danger
mixin panel-danger(title)
+panel("danger",title)
block