Merge pull request #85 from reactiveops/rb/new-logo

update logo
This commit is contained in:
Bobby Brennan
2019-05-16 09:02:44 -04:00
committed by GitHub
7 changed files with 11 additions and 14 deletions

View File

@@ -94,7 +94,7 @@ func startDashboardServer(c conf.Configuration, k *kube.ResourceProvider, port i
dashboard.EndpointHandler(w, r, c, k)
})
router.HandleFunc("/favicon.ico", func(w http.ResponseWriter, r *http.Request) {
http.ServeFile(w, r, "public/favicon.ico")
http.ServeFile(w, r, "pkg/dashboard/assets/favicon-32x32.png")
})
router.HandleFunc("/details/{category}", func(w http.ResponseWriter, r *http.Request) {
vars := mux.Vars(r)

View File

@@ -6,28 +6,30 @@ body {
}
.navbar {
padding: 20px 20px 0;
padding-top: 20px;
}
.navbar, .main-content {
width: 960px;
margin: auto;
}
.navbar .navbar-content {
margin: 0 auto;
width: 900px;
padding: 0px 20px;
}
.navbar .navbar-right {
padding: 15px;
float: right;
}
.navbar .logo {
width: 280px;
width: 250px;
}
.navbar span.oss-text {
color: #23103A;
display: block;
font-size: 11px;
margin: 3px 0;
margin-bottom: 3px;
}
.navbar a {
@@ -35,12 +37,7 @@ body {
}
.navbar .ro-logo {
height: 40px;
}
.main-content {
width: 960px;
margin: 0 auto;
height: 50px;
}
.card {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 705 B

After

Width:  |  Height:  |  Size: 701 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.5 KiB

After

Width:  |  Height:  |  Size: 24 KiB

View File

@@ -6,7 +6,7 @@
</a>
<div class="navbar-right">
<a href="https://reactiveops.com?source=polaris" target="_blank">
<span class="oss-text">Open Source Project By</span>
<span class="oss-text">An Open Source Project By</span>
<img class="ro-logo" src="/static/images/ro-logo.png" alt="ReactiveOps" />
</a>
</div>