Skip to content
This repository has been archived by the owner on Jun 27, 2019. It is now read-only.

Commit

Permalink
Put Soletta project logo in the header of the project
Browse files Browse the repository at this point in the history
Signed-off-by: Bruno Bottazzini <bruno.bottazzini@intel.com>
  • Loading branch information
Bruno Bottazzini committed Apr 15, 2016
1 parent 4db48f4 commit 413aca2
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 1 deletion.
39 changes: 39 additions & 0 deletions client/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -100,11 +100,50 @@ font-family: clearSans;
font-size: 0.9em;
font-weight: bold;
}
.headerSolettaLogo{
width:200px;
background-image: url("/imgs/bg_header.png");
background-repeat: repeat-x;
background-position: left;
}
.dropShadow{
height: 47px;
background-color:#DCDEE0;
width: 1px;
}
.boxTitle{
display: flex;
width:100%;
background-image: url("/imgs/bg_header.png");
background-repeat: repeat-x;
background-position: left;

}
.headerDevapp{
display: flex;
width: 100%;
height: 52px;
}
.headerTitle{
color:#8C9196;
font-size: 21px;
font-family: clearsans-light;
margin-left: 32px;
margin-bottom: 8px;
margin-top: 8px;
}
.headerControls{
flex-grow: 1;
margin-top: 17px;
float:right;
margin-right: 0px;
}
.menuStyle{
margin-bottom: 5px;
margin-top: 0px;
color:#8c9196;
margin-right: 0px;
}
.inputControls{
height: 40px;
background-color: #262a2e;
Expand Down
18 changes: 17 additions & 1 deletion server/views/index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<html ng-app="soletta-devapp" ng-init="loadingStatus='true'">
<head>
<head class="header">
<meta charset="utf-8">
<title>Soletta Development Application</title>

Expand Down Expand Up @@ -102,6 +102,22 @@

});
</script>

<!-- Soletta Dev-App header -->
<div class="headerDevapp">
<div style="width:245px; display: flex;">
<div class="boxTitle" style="width:40px; margin-left: -15px;"></div>
<div class="headerSolettaLogo">
<!-- <img src="imgs/soletta_logo.png" style="margin-top: 6px; margin-bottom: 5px;"/> -->
</div>
<div class="dropShadow"></div>
</div>
<div class="boxTitle">
<div class="headerTitle">
Soletta Development Application
</div>
</div>
</div>
</head>
<body class="container">

Expand Down

0 comments on commit 413aca2

Please sign in to comment.