monitor.css 1.47 KB
Newer Older
Dave Syer committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
.container {
	padding-left: 20px;
	padding-right: 20px;
}

.row {
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}

.spacer {
	width: 100%;
	margin: 0 auto;
	padding-top:4px;
	clear:both;
}


.last {
	margin-right: 0px;
}

.menubar {
	overflow: hidden;
	border-bottom: 1px solid black;
}

.menubar div {
	padding-bottom:5px;

	margin: 0 auto;
	overflow: hidden;
	
	font-size: 80%;
	font-family:'Bookman Old Style',Bookman,'URW Bookman L','Palatino Linotype',serif;
	
	float:left;
}

.menubar .title {
	float: left;
	padding-right: 20px;
	
	font-size: 110%;
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
	font-weight: bold;
	
	vertical-align: bottom;
}

.menubar .menu_actions {
	float: left;
	position:relative;
	top: 4px;
}

.menubar .menu_legend {
	float: right;
	position:relative;
	top: 4px;
	
}

h3.sectionHeader {
	color: black;
	font-size: 110%;
	padding-top: 4px;
	padding-bottom: 4px;
	padding-left: 8px;
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
	background: lightgrey;
}

.success {
	color: green;	
}
.shortCircuited {
	color: blue;	
}
.timeout {
	color: #FF9900;	 /* shade of orange */
}
.failure {
	color: red;	
}

.rejected {
	color: purple;
}
	
.exceptionsThrown {
	color: brown;
}

96 97 98 99
.badRequest {
	color: #00CC99;
}

Dave Syer committed
100 101 102 103 104 105
@media screen and (max-width: 1100px) {
	.container {
		padding-left: 5px;
		padding-right: 5px;
	}
}