blob: 85e56aaed993fe1676f90a090e81edc80591ae65 [file] [log] [blame]
Zack Williams712caf62020-04-28 13:37:41 -07001/*
2 * SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org>
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
6@font-face {
7 font-family: 'Gilroy';
8 src: url('/fonts/gilroy-regular-webfont.woff2') format('woff2'),
9 url('/fonts/gilroy-regular-webfont.woff') format('woff');
10 font-weight: normal;
11 font-style: normal;
12}
13
14@font-face {
15 font-family: 'Gilroy';
16 src: url('/fonts/gilroy-regularitalic-webfont.woff2') format('woff2'),
17 url('/fonts/gilroy-regularitalic-webfont.woff') format('woff');
18 font-weight: normal;
19 font-style: italic;
20}
21
22@font-face {
23 font-family: 'Gilroy';
24 src: url('/fonts/gilroy-semibold-webfont.woff2') format('woff2'),
25 url('/fonts/gilroy-semibold-webfont.woff') format('woff');
26 font-weight: bold;
27 font-style: normal;
28}
29
30
31html, body {
32 height: 100%;
33}
34
35body {
36 font-family: 'Gilroy', 'Open Sans', sans-serif;
37 font-size: 16px;
38 line-height: 140%;
39
40 margin: 0;
41 display: flex;
42 min-height: 100vh;
43 flex-direction: column;
44}
45
46.header {
47 border-top: 2px solid #C4161C;
48 background-color: #cccccc;
49 padding: 1em;
50}
51
52.header.logo {
53 float: left;
54 vertical-align: middle;
55}
56
57.header h1 {
58 display: inline;
59 padding-left: 1em;
60}
61
62.content {
63 padding: 1em;
64 flex: 1;
65}
66
67.footer {
68 padding: 1em;
69 color: #eeeeee;
70 background-color: #1a1a1a;
71}
72
73.footer a {
74 color: #eeeeee;
75}
76
77.buildtime{
78 font-size: 0.8em;
79}
80
81.ccresults ul {
82 padding: 0;
83 margin: 0;
84}
85
86.ccresults li {
87 border: 1px solid #eeeeee;
88 padding: 0.5em;
89 color: #eeeeee;
90 font-size: 0.8em;
91 display: inline-block;
92 background-color: #444444;
93}
94
95.ccresults li a {
96 color: #eeeeee;
97}
98
99/* colors specific to build status */
100li.SUCCESS, a.SUCCESS, span.SUCCESS {
101 background-color: #4E8F00;
102}
103
104li.UNSTABLE, a.UNSTABLE, span.UNSTABLE {
105 background-color: #C28610;
106}
107
108li.FAILURE, a.FAILURE, span.FAILURE {
109 background-color: #C4161C;
110}
111
112li.ABORTED, a.ABORTED, span.ABORTED {
113 background-color: #666666;
114}
115
116li.NONE, a.NONE, span.NONE, li a.NONE {
117 color: #333333;
118 background-color: #eeeeee;
119}