added some icons, small cleaning, create table page stub, table controller

This commit is contained in:
2018-07-16 23:00:45 +02:00
parent 25cb60d377
commit eeaa837c29
23 changed files with 408 additions and 211 deletions
+8 -1
View File
@@ -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);
+14 -3
View File
@@ -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);
}