40 lines
899 B
CSS
40 lines
899 B
CSS
|
/********************************************************************
|
||
|
*
|
||
|
* Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
||
|
*
|
||
|
* Use of this source code is governed by a BSD-style license
|
||
|
* that can be found in the LICENSE file in the root of the source
|
||
|
* tree. An additional intellectual property rights grant can be found
|
||
|
* in the file PATENTS. All contributing project authors may
|
||
|
* be found in the AUTHORS file in the root of the source tree.
|
||
|
*
|
||
|
*********************************************************************/
|
||
|
|
||
|
.status_OK {
|
||
|
color: #FFFFFF;
|
||
|
background-color: #8fdf5f;
|
||
|
}
|
||
|
|
||
|
.status_failed {
|
||
|
color: #FFFFFF;
|
||
|
background-color: #e98080;
|
||
|
}
|
||
|
|
||
|
.status_building {
|
||
|
color: #666666;
|
||
|
background-color: #fffc6c;
|
||
|
}
|
||
|
|
||
|
.last_known_good_revision {
|
||
|
font-size: 800%;
|
||
|
}
|
||
|
|
||
|
.status_cell {
|
||
|
width: 100px;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
margin-left: 35px;
|
||
|
margin-top: 25px;
|
||
|
}
|