Last active
April 7, 2026 19:58
-
-
Save CarlosSMA/345d9ca6ab28dabd39e640a3552e5874 to your computer and use it in GitHub Desktop.
css test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* 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