added some icons, small cleaning, create table page stub, table controller
This commit is contained in:
+8
-1
@@ -1,6 +1,6 @@
|
||||
|
||||
// Body
|
||||
$body-bg: #f5f8fa;
|
||||
$body-bg: white;//$gray-300;
|
||||
|
||||
// Typography
|
||||
$font-family-sans-serif: "IBM Plex Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
|
||||
@@ -12,3 +12,10 @@ $link-decoration: none;
|
||||
$link-hover-color: darken($link-color, 15%);
|
||||
$link-hover-decoration: underline;
|
||||
|
||||
$card-cap-bg: lighten($primary, 5);
|
||||
$card-border-color: $primary;
|
||||
//$card-border-width: 2px;
|
||||
$card-border-radius: 5px;
|
||||
$card-inner-border-radius: 2px;
|
||||
|
||||
$list-group-hover-bg: rgba($primary, .1);
|
||||
|
||||
Vendored
+14
-3
@@ -1,6 +1,6 @@
|
||||
|
||||
// Fonts
|
||||
@import url("https://fonts.googleapis.com/css?family=Raleway:300,400,600");
|
||||
//@import url("https://fonts.googleapis.com/css?family=Raleway:300,400,600");
|
||||
|
||||
// Variables
|
||||
@import "bst-base";
|
||||
@@ -9,11 +9,22 @@
|
||||
|
||||
.page-navbar {
|
||||
background: white;
|
||||
border-bottom: 1px solid $gray-400;
|
||||
border-bottom: 1px solid $primary;
|
||||
|
||||
box-shadow: 0 -3px 8px rgba(black, 1);
|
||||
}
|
||||
|
||||
.page-footer {
|
||||
font-size: 95%;
|
||||
background: $body-bg;
|
||||
border-top: 2px solid white;
|
||||
border-top: 2px dotted $gray-200;
|
||||
}
|
||||
|
||||
.card-header {
|
||||
color: white;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.card {
|
||||
box-shadow: 0 2px 3px rgba(black, .3);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user