diff --git a/public/index.html b/public/index.html index 4acdd37d396b7885c925e973d312556e4dcfa1b8..7d197d36fbcf957cfd522effb9795a919501db28 100644 --- a/public/index.html +++ b/public/index.html @@ -49,6 +49,7 @@ border-radius: 5px; cursor: pointer; transition: background-color 0.3s; + margin: 10px; } button:hover { @@ -59,23 +60,37 @@ background-color: #387a39; } - .footer { + .menu-bar { position: fixed; - bottom: 20px; - font-size: 0.9em; - color: white; + top: 0; + left: 0; + right: 0; + display: flex; + justify-content: center; + background-color: rgba(0, 0, 0, 0.7); + padding: 10px; + z-index: 10; } + .menu-bar button { + background-color: #2196F3; + } + + .menu-bar button:hover { + background-color: #1E88E5; + } +
- - - - + +