source: XIOS/trunk/xios_test_suite/HTML/xios-style.css @ 1821

Last change on this file since 1821 was 1821, checked in by yushan, 4 years ago

XIOS test suite : unit tests will not run if build failed. Catch the make_xios exit value as build status.

File size: 2.5 KB
Line 
1body
2{
3    font-family: Helvetica, sans-serif;
4}
5
6nav
7{
8    width:300px;
9    vertical-align: top;
10}
11
12section
13{
14    clear: both;
15    margin-top:50px;
16    vertical-align: top;
17}
18
19a
20{
21    display:block;
22}
23
24caption
25{
26    font-size: 1.4em;
27    font-weight: bold;
28    caption-side: top;
29    margin-bottom: 20px;
30    text-align: left;
31}
32
33
34footer
35{
36    background-color: rgb(189, 184, 184);
37    border-width: medium;
38    border-style: dashed;
39    border-radius: 10px;
40    position: fixed;
41    bottom: 10px;
42    right: 10px;
43}
44
45
46h1, h2
47{
48    text-align: left;
49}
50
51.dropbtn {
52    background-color:transparent;
53    border: none; 
54}
55
56.dropdown {
57    position: relative;
58    display: inline-block;
59}
60 
61.dropdown-content {
62    display: none;
63    position: absolute;
64    background-color: white;
65    min-width: 320px;
66    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
67    z-index: 1;
68    font-size: 1em;
69}
70 
71.dropdown-content a {
72    color: black;
73    padding: 5px 5px;
74    text-decoration: none;
75    display: block;
76}
77 
78.dropdown-content a:hover 
79{
80    background-color: #2e86c1;
81}
82   
83.dropdown:hover .dropbtn 
84{
85    background-color:#2e86c1;
86}
87
88.showit 
89{
90    display: block;
91}
92
93.compile_table
94{
95    margin-left: 60px;
96    margin-bottom: 30px;
97    margin-top: 30px;
98    border-collapse: collapse;
99}
100
101.compile_table td
102{
103    margin-left: 20px;
104    margin-bottom: 10px;
105    border: solid 2px white;
106    min-width: 150px;
107    text-align: center;
108}
109
110.compile_sub_table td
111{
112    border: solid 1px white;
113}
114
115.compile_sub_table
116{
117    border-collapse: collapse;
118    margin-top: 10px;
119    margin-bottom: 10px;
120    margin-left: 10px;
121    margin-right: 10px;
122
123}
124
125.test_table
126{
127    margin-left: 60px;
128    margin-bottom: 30px;
129    margin-top: 30px;
130    border-collapse: collapse;
131}
132
133.test_table td
134{
135    margin-left: 20px;
136    margin-bottom: 10px;
137    border: solid 2px white;
138    text-align: center;
139}
140
141
142.test_sub_table
143{
144    border-collapse: collapse;
145    margin-bottom: 10px;
146    margin-top: 10px;
147    margin-left: 10px;
148    margin-right: 10px;
149}
150
151.test_sub_table td
152{
153    border: solid 1px white;
154    text-align: left;
155}
156
157.test_sub_table .build_level
158{
159    background-color: #96cdff;
160}
161
162
163.test_sub_table .algo_level
164{
165    background-color: #a1d3ff;
166}
167
168.test_sub_table .config_level
169{
170    background-color: #b3dafd;
171}
172
173.test_sub_table .file_level
174{
175    background-color: #c2e1fd;
176}
177
178
179 
180.compile_table_row.hide
181{
182    display: none;
183}
184
185.compile_table_row.show
186{
187    display: "table-row";
188}
189
190.test_table_row.hide
191{
192    display: none;
193}
194
195.test_table_row.show
196{
197    display: "table-row";
198}
Note: See TracBrowser for help on using the repository browser.