Skip to content

Instantly share code, notes, and snippets.

@CarlosSMA
Last active April 7, 2026 19:58
Show Gist options
  • Select an option

  • Save CarlosSMA/345d9ca6ab28dabd39e640a3552e5874 to your computer and use it in GitHub Desktop.

Select an option

Save CarlosSMA/345d9ca6ab28dabd39e640a3552e5874 to your computer and use it in GitHub Desktop.
css test
/* Left banner: Grafana */
body::before {
content: "📊 METRICS: Go to grafana.example.com";
display: block;
background-color: #f05a28; /* Grafana orange */
color: white;
text-align: center;
padding: 8px 0;
font-weight: bold;
font-size: 12px;
position: fixed;
top: 0;
left: 0;
right: 50%; /* Stops at the middle of the screen */
z-index: 10001;
}
/* Right banner: Argo Workflows */
body::after {
content: "⚙️ PIPELINES: Go to argo-workflows.example.com";
display: block;
background-color: #1565c0; /* Argo blue */
color: white;
text-align: center;
padding: 8px 0;
font-weight: bold;
font-size: 12px;
position: fixed;
top: 0;
left: 50%; /* Starts at the middle of the screen */
right: 0;
z-index: 10000;
}
/* Adjust layout for a single row of banners */
.nav-bar, .main-container {
padding-top: 32px !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment