Skip to content

Instantly share code, notes, and snippets.

@falkreon
Forked from stephan-gh/jenks.css
Last active August 29, 2015 14:06
Show Gist options
  • Save falkreon/cba5c5e717d5c2f81694 to your computer and use it in GitHub Desktop.
Save falkreon/cba5c5e717d5c2f81694 to your computer and use it in GitHub Desktop.
/*
* Jenks - An simple and clean theme for the Jenkins continous integration server.
* Copyright (c) 2014, Minecrell <https://github.com/Minecrell>
* Licensed under the MIT License: http://opensource.org/licenses/MIT
*/
@import url(//fonts.googleapis.com/css?family=Open+Sans|Ubuntu+Mono);
body, table, form, input, td, th, p, textarea, select {
font-family: 'Open Sans', sans-serif;
font-size: inherit;
background: #ecf0f1 !important;
}
body {
color: black;
font-size: 80%;
}
body, #main-panel-content > div {
background: #ecf0f1 !important;
}
a {
text-decoration: none !important;
}
#header {
background: #34495e;
}
.pane-header {
background: rgba(0,0,0,0.08);
}
.tabBar .tab a, .tabBar [type="radio"]:checked ~ a {
background: rgba(0,0,0,0.03);
}
#side-panel {
padding-left: 10px;
}
.pane {
background: white;
background: rgba(255,255,255,0.7);
}
#side-panel .pane-frame {
border: solid 1px #cecece;
padding-bottom: 3px;
background: white;
}
#projectstatus {
border: solid 1px #cecece;
margin-top: 15px;
}
#projectstatus-tabBar {
display: none;
}
/* Console */
pre {
font-size: 13px;
font-family: 'Ubuntu Mono', monospace;
background: #002b36;
color: #839496;
padding: 10px;
border-radius: 5px;
}
pre a, pre a:link, pre a:visited {
color: #eee8d5;
}
pre a:hover {
color: #fdf6e3;
background: #073642;
}
pre::selection, pre *::selection {
background: #073642;
}
pre::-moz-selection, pre *::-moz-selection {
background: #073642;
}
.warning-inline, .gradle-task-progress-status {
color: #b58900 !important;
}
.error-inline, .gradle-outcome-failure {
color: #dc322f !important;
}
.gradle-outcome-success {
color: #268bd2 !important;
}
#console-outline {
white-space: normal;
}
/* Indent Gradle tasks */
#console-outline-body li {
margin-left: 15px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment