Skip to content

Instantly share code, notes, and snippets.

@andrew-t
Last active October 30, 2017 16:40
Show Gist options
  • Save andrew-t/26b45d88151a9689c77f3dd44bd87581 to your computer and use it in GitHub Desktop.
Save andrew-t/26b45d88151a9689c77f3dd44bd87581 to your computer and use it in GitHub Desktop.
Make waiting for your Jenkins builds more exciting by replacing the console with a Star Wars style scroller
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document regexp("https:\/\/[ regexp'd jenkins url here ]\/.*console") {
#out,
.console-output {
text-transform: uppercase;
font-family: sans-serif !important;
perspective-origin: bottom;
transform: rotateX(45deg);
perspective: 50vw;
position: absolute;
bottom: 0;
transform-origin: bottom;
color: yellow;
font-size: 2em;
line-height: 1.75em;
font-weight: bold;
overflow: auto;
height: 400vh;
padding-top: 350vh;
padding-bottom: 20vh !important;
}
#out > pre,
.console-output > pre {
font-family: sans-serif;
}
#main-panel {
perspective: 40vh;
height: 80vh;
overflow: hidden;
background: black url('https://cdn.eso.org/images/screen/eso1130c.jpg');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment