source: XIOS/dev/dev_trunk_omp/GENERIC_TESTCASE/xios-style.css @ 1774

Last change on this file since 1774 was 1774, checked in by yushan, 5 years ago

dev_trunk_omp : html update

File size: 3.5 KB
Line 
1body
2{
3    font-family: Helvetica, sans-serif;
4}
5nav
6{
7    /* float:left; */
8    width:300px;
9    /* border:2px solid black; */
10    /* display: inline-block; */
11    vertical-align: top;
12}
13
14section
15{
16    clear: both;
17    border:2px solid blue;
18    margin-top:50px;
19    /* display: inline-block; */
20    vertical-align: top;
21}
22
23a
24{
25    display:block;
26}
27
28strong
29{
30    background-color:red;/* Fond rouge */
31    color:yellow;/* Texte de couleur jaune */
32    /* position: relative;
33    left: 55px;
34    top: 10px; */
35}
36
37#xiosinfo
38{
39    color: black;
40    padding-left: 20px; 
41    font-weight: bold;
42}
43
44#xiosinfotable
45{
46    margin-left: 20px;
47    margin-bottom: 10px;
48    color: red;
49}
50
51em
52{
53    font-weight: bold;
54    font-size: 1.3em;
55    text-align: right;
56}
57
58#navborder
59{
60    border: solid 2px black;
61    margin: 5px;
62}
63
64footer
65{
66    background-color: rgb(189, 184, 184);
67    border-width: medium;
68    border-style: dashed;
69    border-radius: 10px;
70    position: fixed;
71    bottom: 10px;
72    right: 10px;
73   
74}
75
76
77td
78{
79    /* border: solid 1px black; */
80}
81
82h1, h2
83{
84    text-align: center;
85}
86
87#xiostable
88{
89    /* font-size: large; */
90    font-weight: bolder;
91    margin: 20px;
92    border-collapse: collapse;
93}
94
95button.btn.add::before {
96    font-family: fontAwesome;
97    content: "\f067\00a0";
98  }
99
100
101
102textarea
103{
104    width: 500px;
105}
106
107:required
108{
109    background-color:rgb(212, 0, 255);
110}
111
112.testanswer.green
113{
114    color: green;
115}
116
117.testanswer.red
118{
119    color: red;
120}
121
122.testanswer.goldenrod
123{
124    color: goldenrod;
125}
126
127.fold {
128        background: -webkit-linear-gradient(top, #e5e5e5, #ccc);
129        padding: 10px;
130        width: 280px;
131        height: 80px;
132        color: #999;
133        -webkit-transition: all 0.3s linear;
134        -moz-transition: all 0.3s linear;
135        transition: all 0.3s linear;
136}
137
138.unfolder { display: none; }
139
140.toggle-label {
141        display: inline-block;
142        cursor: pointer;
143        font-size: 11px;
144        border-radius: 5px;
145        padding: 5px;
146}
147.unfold-icon, .fold-icon {
148  color: #999;
149  /* fixed width to stop the icon from wiggling */
150  width: 10px;
151  display: inline-block;
152}
153.unfolder ~ .fold {
154  display: none;
155}
156.unfolder ~ label .fold-icon {
157  display: none;
158}
159
160.unfolder:checked ~ .fold {
161  display: block;
162}
163.unfolder:checked ~ label .fold-icon {
164  display: inline-block;
165}
166.unfolder:checked ~ label .unfold-icon {
167  display: none;
168}
169
170.dropbtn {
171    background-color:transparent;
172    /* color: black;
173    padding: 16px;
174    font-size: 16px;*/
175    border: none; 
176  }
177 
178  .dropdown {
179    position: relative;
180    display: inline-block;
181  }
182 
183  .dropdown-content {
184    display: none;
185    position: absolute;
186    background-color: white;
187    min-width: 320px;
188    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
189    z-index: 1;
190    font-size: 1em;
191  }
192 
193  .dropdown-content a {
194    color: black;
195    padding: 5px 5px;
196    text-decoration: none;
197    display: block;
198  }
199 
200  .dropdown-content a:hover {background-color: #2e86c1;}
201 
202  .dropdown:hover .dropdown-content {display: block;}
203 
204  .dropdown:hover .dropbtn {background-color:#2e86c1;}
205
206 
207  #compile_table
208  {
209      margin-left: 60px;
210      margin-bottom: 30px;
211      margin-top: 30px;
212      /* border: solid 2px blue; */
213  }
214
215  #compile_table td
216  {
217      margin-left: 20px;
218      margin-bottom: 10px;
219      border: solid 2px white;
220      background-color: #aed6f1;
221      min-width: 200px;
222      text-align: center;
223  }
224
225  #compile_table .irene_subtable td
226  {
227      min-width: 80px;
228  }
229
230  #compile_table .jz_subtable td
231  {
232      min-width: 80px;
233  }
234
235  #compile_table .subtable_title
236  {
237      font-weight: bold;
238  }
239
240  #compile_table .revision_number
241  {
242      font-weight: bold;
243  }
Note: See TracBrowser for help on using the repository browser.