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

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

trunk : add html scripts

File size: 3.0 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    border:2px solid blue;
16    margin-top:50px;
17    vertical-align: top;
18}
19
20a
21{
22    display:block;
23}
24
25strong
26{
27    background-color:red;/* Fond rouge */
28    color:yellow;/* Texte de couleur jaune */
29}
30
31
32em
33{
34    font-weight: bold;
35    font-size: 1.2em;
36    text-align: right;
37}
38
39
40
41footer
42{
43    background-color: rgb(189, 184, 184);
44    border-width: medium;
45    border-style: dashed;
46    border-radius: 10px;
47    position: fixed;
48    bottom: 10px;
49    right: 10px;
50}
51
52
53td
54{
55    border: solid 1px white;
56}
57
58h1, h2
59{
60    text-align: center;
61}
62
63.dropbtn {
64    background-color:transparent;
65    border: none; 
66}
67
68.dropdown {
69    position: relative;
70    display: inline-block;
71}
72 
73.dropdown-content {
74    display: none;
75    position: absolute;
76    background-color: white;
77    min-width: 320px;
78    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
79    z-index: 1;
80    font-size: 1em;
81}
82 
83.dropdown-content a {
84    color: black;
85    padding: 5px 5px;
86    text-decoration: none;
87    display: block;
88}
89 
90.dropdown-content a:hover 
91{
92    background-color: #2e86c1;
93}
94   
95.dropdown:hover .dropbtn 
96{
97    background-color:#2e86c1;
98}
99
100.showit 
101{
102    display: block;
103}
104 
105
106.compile_table
107{
108    margin-left: 60px;
109    margin-bottom: 30px;
110    margin-top: 30px;
111}
112
113.compile_table td
114{
115    margin-left: 20px;
116    margin-bottom: 10px;
117    border: solid 1px white;
118    min-width: 150px;
119    text-align: center;
120}
121
122.test_table
123{
124    margin-left: 60px;
125    margin-bottom: 30px;
126    margin-top: 30px;
127}
128
129.test_table td
130{
131    margin-left: 20px;
132    margin-bottom: 10px;
133    border: solid 2px white;
134    /* min-width: 150px; */
135    text-align: center;
136}
137
138.test_sub_table
139{
140    /* margin-left: 10px; */
141    margin-bottom: 10px;
142    margin-top: 10px;
143}
144
145.test_sub_table td
146{
147    /* margin-left: 20px;
148    margin-bottom: 10px; */
149    border: solid 1px white;
150    /* min-width: 150px; */
151    text-align: left;
152}
153
154.test_sub_table .build_level
155{
156    background-color: #96cdff;
157}
158
159
160.test_sub_table .algo_level
161{
162    background-color: #a1d3ff;
163}
164
165.test_sub_table .config_level
166{
167    background-color: #b3dafd;
168}
169
170.test_sub_table .file_level
171{
172    background-color: #c2e1fd;
173}
174
175
176.split 
177{
178    height: 100%;
179    width: 50%;
180    position: absolute;
181}
182 
183/* Control the left side */
184.left 
185{
186    left: 0;
187}
188 
189/* Control the right side */
190.right 
191{
192    right: 0;
193}
194 
195.compile_table_row.hide
196{
197    display: none;
198}
199
200.compile_table_row.show
201{
202    display: "";
203}
204
205.test_table_row.hide
206{
207    display: none;
208}
209
210.test_table_row.show
211{
212    display: "";
213}
214 
215.table_jz
216{
217    border: solid 0.2px black;
218    margin: 20px;
219}
220
221.table_jz.hide
222{
223    display: none;
224}
225
226.table_jz.show
227{
228    display: "";
229}
230 
231
232.table_jz td
233{
234    border: solid 0.1px white;
235}
236
237.table_irene
238{
239    border: solid 0.2px black;
240    margin: 20px;
241}
242 
243.table_irene.hide
244{
245    display: none;
246}
247
248.table_irene.show
249{
250    display: "";
251}
252
253.table_irene td
254{
255    border: solid 0.1px white;
256}
Note: See TracBrowser for help on using the repository browser.