123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192 |
- /*
- *= require ./bootstrap
- *= require ./selectize.default
- *= require ./github
- *= require ./daterangepicker-bs3
- *= require_self
- */
- pre {
- border: none;
- border-radius: 0;
- }
- body {
- padding-top: 20px;
- padding-bottom: 20px;
- }
- .results-table th {
- cursor: pointer;
- }
- .results-table thead {
- background-color: #fff;
- }
- .results-table img {
- max-width: 200px;
- max-height: 200px;
- }
- input.search {
- border: none;
- box-shadow: none;
- }
- input.search:focus {
- outline: none;
- box-shadow: none;
- }
- .button_to {
- display: inline-block;
- }
- .button_to input:focus {
- outline: none;
- }
- .form-inline .selectize-control, .text-right .selectize-control {
- display: inline-block;
- vertical-align: middle;
- margin-left: 5px;
- margin-right: 20px;
- text-align: left;
- }
- #statement-box .selectize-control {
- margin-right: 0;
- }
- #editor-container {
- background-color: #141414;
- padding-top: 10px;
- padding-bottom: 10px;
- }
- #editor {
- height: 160px;
- }
- .ace_print-margin-layer {
- display: none;
- }
- .ace_gutter-cell.error {
- background-color: red;
- }
- .chart {
- height: 300px;
- text-align: center;
- display: flex;
- justify-content: center;
- flex-direction: column;
- }
- .chart > .results-container {
- height: 300px;
- border: solid 1px #ddd;
- overflow: scroll;
- text-align: left;
- }
- .dashboard {
- font-weight: bold;
- }
- #search-item {
- display: none;
- }
- .creator {
- text-align: right;
- color: #999;
- }
- .vars {
- color: #ccc;
- }
- .check-state {
- font-weight: bold;
- }
- .check-state a {
- color: inherit;
- }
- .check-state.failing {
- color: red;
- }
- .check-state.passing {
- color: #5cb85c;
- }
- .check-state.error {
- color: #666;
- }
- .check-state.timed_out {
- color: orange;
- }
- .check-state.disabled {
- color: #000;
- }
- .topbar {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- background-color: whitesmoke;
- height: 60px;
- z-index: 1001;
- }
- .glyphicon-remove {
- cursor: pointer;
- color: #d9534f;
- display: none;
- }
- .list-group li:hover .glyphicon-remove {
- display: inline;
- }
- .list-group {
- cursor: move;
- }
- #header a.active {
- color: #999;
- }
- #code {
- max-height: 236px;
- overflow: hidden;
- }
- #code.expanded {
- max-height: none;
- }
- [v-cloak] {
- display: none;
- }
- .chart-container {
- padding-top: 10px;
- clear: both;
- }
- .chart-container h4 {
- text-align: center;
- }
- .chart-container h4 a {
- color: inherit;
- }
|