source: XIOS/dev/dev_ym/XIOS_COUPLING/xios_test_suite/HTML/xios-style.css @ 2171

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

XIOS test suite : add table border

File size: 2.6 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    /* border: solid 1px black; */
100}
101
102.compile_table td
103{
104    margin-left: 20px;
105    margin-bottom: 10px;
106    border: solid 2px white;
107    min-width: 150px;
108    text-align: center;
109}
110
111.compile_sub_table td
112{
113    border: solid 1px white;
114}
115
116.compile_sub_table
117{
118    border-collapse: collapse;
119    margin-top: 10px;
120    margin-bottom: 10px;
121    margin-left: 10px;
122    margin-right: 10px;
123
124}
125
126.test_table
127{
128    margin-left: 60px;
129    margin-bottom: 30px;
130    margin-top: 30px;
131    /* border-collapse: collapse; */
132}
133
134.test_table td
135{
136    margin-left: 20px;
137    margin-bottom: 10px;
138    border: solid 2px white;
139    text-align: center;
140}
141
142
143.test_sub_table
144{
145    border-collapse: collapse;
146    margin-bottom: 10px;
147    margin-top: 10px;
148    margin-left: 10px;
149    margin-right: 10px;
150}
151
152.test_sub_table td
153{
154    border: solid 1px white;
155    text-align: left;
156}
157
158.test_sub_table .build_level
159{
160    background-color: #96cdff;
161}
162
163
164.test_sub_table .algo_level
165{
166    background-color: #a1d3ff;
167}
168
169.test_sub_table .config_level
170{
171    background-color: #b3dafd;
172}
173
174.test_sub_table .file_level
175{
176    background-color: #c2e1fd;
177}
178
179
180 
181.compile_table_row.hide
182{
183    display: none;
184}
185
186.compile_table_row.show
187{
188    display: "table-row";
189}
190
191.test_table_row.hide
192{
193    display: none;
194}
195
196.test_table_row.show
197{
198    display: "table-row";
199}
Note: See TracBrowser for help on using the repository browser.