diff --git a/build/ui-bundle.zip b/build/ui-bundle.zip index 95cf0e8..974bf3b 100644 Binary files a/build/ui-bundle.zip and b/build/ui-bundle.zip differ diff --git a/src/css/doc.css b/src/css/doc.css index cc76300..e452684 100644 --- a/src/css/doc.css +++ b/src/css/doc.css @@ -965,3 +965,82 @@ h1.page + aside.toc.embedded { display: block !important; } } + +.tooltip { + position: relative; + cursor: pointer; +} + +/* Tooltip CSS */ +.tooltip::after { + content: attr(data-tooltip); + position: absolute; + white-space: nowrap; + background-color: #333; + color: white; + padding: 4px 8px; + border-radius: 4px; + opacity: 0; + transition: opacity 0.5s; + bottom: 100%; + left: 50%; + transform: translateX(-50%); + z-index: 1000; +} + +.tooltip:hover::after { + opacity: 1; +} + +/* next button CSS */ +.next-button { + padding: 10px 20px; + background-color: blue; + color: white; + text-decoration: none; + border-radius: 5px; + display: right; +} + +.next-button:hover { + background-color: #0056b3; +} + +.back-button { + padding: 10px 20px; + background-color: #007bff; + color: white; + text-decoration: none; + border-radius: 5px; + display: inline-block; +} + +.back-button:hover { + background-color: #0056b3; +} + +.overview-button { + padding: 10px 20px; + background-color: #007bff; + color: white; + text-decoration: none; + border-radius: 5px; + display: inline-block; +} + +.overview-button:hover { + background-color: #0056b3; +} + +/* experimenting with cloud images */ +.cloud-image { + display: block !important; + margin-left: auto !important; + margin-right: auto !important; + height: auto; + width: 40%; + max-width: 100%; + vertical-align: middle; + border-radius: 1.5rem; + border-style: solid; +} diff --git a/src/partials/nav-explore.hbs b/src/partials/nav-explore.hbs index 4553e76..dfe9c46 100644 --- a/src/partials/nav-explore.hbs +++ b/src/partials/nav-explore.hbs @@ -17,6 +17,10 @@