source: BOL/Multi_atlas/enteteMulti.html @ 3684

Last change on this file since 3684 was 3684, checked in by idelkadi, 4 years ago

Repository under svn of a first version of Multiatlas diagnostics for LMDZ. This version is adapted to be able to run a LMDZ multiatlas on an individual account on the ciclad machine of the IPSL. In this version, the parts to be modified are identified so as to subsequently adapt it to other machines.
This version is still under development.

File size: 1.1 KB
Line 
1
2<!DOCTYPE html>
3<head>
4    <meta charset="utf-8" />
5    <title>menu</title>
6    <style>
7html,body {
8  padding:0;
9  margin:0;
10  height:100%;
11background-color: white;
12font-family:"Trebuchet MS",Verdana,Geneva,Arial,Helvetica,sans-serif;
13margin:30px 70px 70px 0px;
14}
15#menu, #menu ul {
16  padding:0;
17  margin:0;
18  list-style: none;
19  text-align: center;
20}
21
22#menu li {
23  display:inline-block;
24  vertical-align: top;
25  position: relative;
26  background: #333;
27}
28#menu li li {
29  display:inherit;
30}
31#menu li:hover {
32  background: #666
33}
34#menu a {
35  display:block;
36  padding:5px 50px;
37  text-decoration: none;
38  color:#fff;
39}
40#menu ul li a {
41  padding:5px 8px;
42}
43#menu ul {
44  position: absolute;
45  z-index: 1000;
46  min-width:100%;
47  white-space: nowrap;
48  text-align: left;
49}
50#menu ul ul {
51  left:100%;
52  top:0;
53  overflow: hidden;
54  max-width: 0;
55  min-width: 0;
56  transition: 0.3s all;
57}
58#menu ul li:hover ul {
59  max-width: 30em;
60}
61#menu ul li {
62  max-height:0;
63  overflow: hidden;
64  transition:all 0.8s;
65}
66#menu li li li {
67  max-height: inherit;
68}
69#menu li:hover li {
70  max-height: 15em;
71  overflow: visible;
72}
73    </style>
74</head>
75<body>
76
Note: See TracBrowser for help on using the repository browser.