Parent Directory
|
Revision Log
Revision 7 - (view) (download) (as text)
| 1 : | egutierrez | 7 | /* CSS Document */ |
| 2 : | |||
| 3 : | ul { | ||
| 4 : | margin: 0; | ||
| 5 : | padding: 0; | ||
| 6 : | list-style: none; | ||
| 7 : | width: 150px; | ||
| 8 : | } | ||
| 9 : | |||
| 10 : | ul li { | ||
| 11 : | position: relative; | ||
| 12 : | } | ||
| 13 : | |||
| 14 : | li ul { | ||
| 15 : | position: absolute; | ||
| 16 : | left: 149px; | ||
| 17 : | top: 0; | ||
| 18 : | display: none; | ||
| 19 : | } | ||
| 20 : | |||
| 21 : | ul li a { | ||
| 22 : | display: block; | ||
| 23 : | text-decoration: none; | ||
| 24 : | color: #777; | ||
| 25 : | background: #fff; | ||
| 26 : | padding: 5px; | ||
| 27 : | border: 1px solid #ccc; | ||
| 28 : | border-bottom: 0; | ||
| 29 : | } | ||
| 30 : | |||
| 31 : | /* Fix IE. Hide from IE Mac \*/ | ||
| 32 : | * html ul li { float: left; } | ||
| 33 : | * html ul li a { height: 1%; } | ||
| 34 : | /* End */ | ||
| 35 : | |||
| 36 : | ul { | ||
| 37 : | margin: 0; | ||
| 38 : | padding: 0; | ||
| 39 : | list-style: none; | ||
| 40 : | width: 150px; | ||
| 41 : | border-bottom: 1px solid #ccc; | ||
| 42 : | } | ||
| 43 : | |||
| 44 : | li:hover ul, li.over ul { | ||
| 45 : | display: block; } |
| root@fsl.cenditel.gob.ve | ViewVC Help |
| Powered by ViewVC 1.0.0 |