github.com/shashidharatd/test-infra@v0.0.0-20171006011030-71304e1ca560/prow/cmd/deck/static/style.css (about)

     1  body {
     2      font-family: "Roboto", "Arial", sans-serif;
     3      line-height: 1.4;
     4      background: #f4f4f4;
     5      color: #444;
     6      padding: 0;
     7      margin: 0;
     8  }
     9  
    10  header {
    11      background-color: #3f51b5;
    12      color: white;
    13      padding: 2px;
    14      padding-left: 20px;
    15      box-shadow: 0px 0px 10px #666;
    16  }
    17  
    18  header a {
    19      color: inherit;
    20  }
    21  
    22  h1 {
    23      font-weight: normal;
    24      font-size: 2em;
    25      margin: 2px;
    26  }
    27  
    28  div {
    29      background: #fff;
    30      padding: 8px;
    31      border-radius: 2px;
    32      box-shadow: 0 0 4px #e0e0e0;
    33      margin-top: 8px;
    34  }
    35  
    36  aside {
    37      margin: 8px;
    38  }
    39  
    40  ul {
    41      list-style-type: none;
    42      margin: 0;
    43      padding: 0;
    44  }
    45  
    46  li {
    47      margin: 0 8px;
    48      display: inline-block;
    49  }
    50  
    51  select {
    52      height: 1.4em;
    53      border: none;
    54      border-bottom: 1px solid #e3e3e3;
    55      background: transparent;
    56  }
    57  
    58  article {
    59      overflow: hidden;
    60      margin: 8px;
    61  }
    62  
    63  table {
    64      background: #fff;
    65      border-radius: 2px;
    66      box-shadow: 0 0 4px #e0e0e0;
    67      border-collapse: collapse;
    68      width: 100%;
    69  }
    70  
    71  tr {
    72      border-top: 1px solid #f4f4f4;
    73  }
    74  
    75  tr.changed {
    76      border-top: 1px solid #a4a4a4;
    77  }
    78  
    79  td:first-child, th:first-child {
    80      padding-left: 16px;
    81  }
    82  
    83  td:last-child, th:last-child {
    84      padding-right: 16px;
    85  }
    86  
    87  td, th {
    88      text-align: left;
    89      padding: 8px;
    90  }
    91  
    92  th {
    93      color: #333;
    94  }
    95  
    96  .triggered, .pending, .success, .failure, .error, .aborted {
    97      font-weight: bold;
    98  }
    99  
   100  .triggered, .pending {
   101      color: #ffa500;
   102  }
   103  
   104  .success {
   105      color: #22dd22;
   106  }
   107  
   108  .failure {
   109      color: #dd2222;
   110  }
   111  
   112  .error, .aborted {
   113      color: #888888;
   114  }
   115  
   116  a:link {
   117      text-decoration: none;
   118      color: blue;
   119  }
   120  
   121  #rerun {
   122      display: none;
   123      position: fixed;
   124      z-index: 1;
   125      padding-top: 100px;
   126      margin: 0;
   127      left: 0;
   128      top: 0;
   129      width: 100%;
   130      height: 100%;
   131      overflow: auto;
   132      background-color: rgba(0,0,0,0.4);
   133  }
   134  
   135  #rerun-content {
   136      font-family: monospace;
   137      background-color: #fefefe;
   138      margin: auto;
   139      padding: 20px;
   140      border: 1px solid #888;
   141      width: 80%;
   142      text-align: center;
   143  }