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

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

trunk : update on html rendering

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