Commit 9bd2ef29 authored by Evren Kutar's avatar Evren Kutar

v0.0.3.1

dashboard seperated navigations style changes apply with little css bug
npm start on port 8080
parent 82c772e4
...@@ -51,6 +51,22 @@ a:hover { ...@@ -51,6 +51,22 @@ a:hover {
font-size:18px; font-size:18px;
} }
/** BRAND **/
.brand-bg {
background-color:#A61229;
}
button.brand-bg {
background-color:#A61229;
color:#fff;
}
button.brand-bg:hover {
background-color:#941A1A;
color:#fff;
}
.brand { .brand {
border-bottom:1px solid #ccc; border-bottom:1px solid #ccc;
} }
...@@ -66,6 +82,8 @@ a:hover { ...@@ -66,6 +82,8 @@ a:hover {
margin-bottom: 22px; margin-bottom: 22px;
} }
/** END OF BRAND **/
/* Everything but the jumbotron gets side spacing for mobile first views */ /* Everything but the jumbotron gets side spacing for mobile first views */
.header, .header,
.marketing, .marketing,
...@@ -242,7 +260,7 @@ select { ...@@ -242,7 +260,7 @@ select {
} }
.manager-view-content { .manager-view-content {
padding:35px 50px; padding:35px 40px;
overflow:auto; overflow:auto;
-webkit-flex-grow: 1; -webkit-flex-grow: 1;
flex-grow: 1; flex-grow: 1;
...@@ -733,6 +751,31 @@ table.dataTable thead .sorting:after { ...@@ -733,6 +751,31 @@ table.dataTable thead .sorting:after {
margin-top: 5px; margin-top: 5px;
} }
/* DASHBOARD */
.dashboard .row {
margin-bottom:30px;
}
.dashboard .major-buttons {
margin-bottom:20px;
}
.dashboard .major-buttons i {
margin-right:10px;
}
.dashboard .major-buttons a button {
width:100%;
height:100px;
font-size: 19px;
font-family: 'robotolight';
}
/* END OF DASHBOARD */
/* PERSONNEL INFO */ /* PERSONNEL INFO */
.generic-profile-picture img { .generic-profile-picture img {
...@@ -989,12 +1032,20 @@ table.dataTable thead .sorting:after { ...@@ -989,12 +1032,20 @@ table.dataTable thead .sorting:after {
} }
@media (max-width: 560px) { @media (max-width: 560px) {
.personnel-info-container { .personnel-info-container {
width: 350px; width: 350px;
} }
} }
@media (max-width: 991px) {
.dashboard .major-buttons a button {
margin-bottom:20px;
}
}
.tablescroll{ .tablescroll{
width: 100%; width: 100%;
overflow-x:scroll; overflow-x:scroll;
......
...@@ -64,6 +64,22 @@ a:hover { ...@@ -64,6 +64,22 @@ a:hover {
font-size:18px; font-size:18px;
} }
/** BRAND **/
.brand-bg {
background-color:#A61229;
}
button.brand-bg {
background-color:#A61229;
color:#fff;
}
button.brand-bg:hover {
background-color:#941A1A;
color:#fff;
}
.brand { .brand {
border-bottom:1px solid #ccc; border-bottom:1px solid #ccc;
} }
...@@ -79,6 +95,8 @@ a:hover { ...@@ -79,6 +95,8 @@ a:hover {
margin-bottom: 22px; margin-bottom: 22px;
} }
/** END OF BRAND **/
/* Everything but the jumbotron gets side spacing for mobile first views */ /* Everything but the jumbotron gets side spacing for mobile first views */
.header, .header,
.marketing, .marketing,
...@@ -255,7 +273,7 @@ select { ...@@ -255,7 +273,7 @@ select {
} }
.manager-view-content { .manager-view-content {
padding:35px 50px; padding:35px 40px;
overflow:auto; overflow:auto;
-webkit-flex-grow: 1; -webkit-flex-grow: 1;
flex-grow: 1; flex-grow: 1;
...@@ -746,6 +764,31 @@ table.dataTable thead .sorting:after { ...@@ -746,6 +764,31 @@ table.dataTable thead .sorting:after {
margin-top: 5px; margin-top: 5px;
} }
/* DASHBOARD */
.dashboard .row {
margin-bottom:30px;
}
.dashboard .major-buttons {
margin-bottom:20px;
}
.dashboard .major-buttons i {
margin-right:10px;
}
.dashboard .major-buttons a button {
width:100%;
height:100px;
font-size: 19px;
font-family: 'robotolight';
}
/* END OF DASHBOARD */
/* PERSONNEL INFO */ /* PERSONNEL INFO */
.generic-profile-picture img { .generic-profile-picture img {
...@@ -1002,12 +1045,20 @@ table.dataTable thead .sorting:after { ...@@ -1002,12 +1045,20 @@ table.dataTable thead .sorting:after {
} }
@media (max-width: 560px) { @media (max-width: 560px) {
.personnel-info-container { .personnel-info-container {
width: 350px; width: 350px;
} }
} }
@media (max-width: 991px) {
.dashboard .major-buttons a button {
margin-bottom:20px;
}
}
.tablescroll{ .tablescroll{
width: 100%; width: 100%;
overflow-x:scroll; overflow-x:scroll;
...@@ -1032,6 +1083,7 @@ table.dataTable thead .sorting:after { ...@@ -1032,6 +1083,7 @@ table.dataTable thead .sorting:after {
height: 700px; height: 700px;
} }
/* /*
* metismenu - v1.1.3 * metismenu - v1.1.3
* Easy menu jQuery plugin for Twitter Bootstrap 3 * Easy menu jQuery plugin for Twitter Bootstrap 3
......
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
"scripts": { "scripts": {
"postinstall": "bower install", "postinstall": "bower install",
"prestart": "npm install", "prestart": "npm install",
"start": "http-server app/ -a localhost -p 8000 -c-1", "start": "http-server app/ -a localhost -p 8080 -c-1",
"pretest": "npm install", "pretest": "npm install",
"test": "karma start karma.conf.js", "test": "karma start karma.conf.js",
"test-single-run": "karma start karma.conf.js --single-run", "test-single-run": "karma start karma.conf.js --single-run",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment