Last active
October 30, 2017 16:40
-
-
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
This file contains 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
@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