X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=ui%2Fweb%2Fsrc%2Fviews%2FChargingStationsView.vue;h=094988b101d4f9df3184437e6609f022e046b994;hb=239bd875c259755721a45f2e677bc6cb73d88f7d;hp=d0acc4e3562c9e3a1b5ffb9f531cb5adc82ec614;hpb=878855a218443d8d0a610f1e79d8d4afaf07153a;p=e-mobility-charging-stations-simulator.git diff --git a/ui/web/src/views/ChargingStationsView.vue b/ui/web/src/views/ChargingStationsView.vue index d0acc4e3..094988b1 100644 --- a/ui/web/src/views/ChargingStationsView.vue +++ b/ui/web/src/views/ChargingStationsView.vue @@ -1,39 +1,237 @@ @@ -70,23 +296,45 @@ function stopSimulator(): void { flex-direction: column; } +#ui-server-container { + display: flex; + justify-content: center; +} + +#ui-server-selector { + width: 100%; + background-color: rgb(239, 239, 239); + text-align: center; +} + +#ui-server-selector:hover { + background-color: lightgrey; +} + #buttons-container { display: flex; flex-direction: row; } -#button { - flex: auto; +.simulator-start-button { + color: ivory; + background-color: green; +} + +.simulator-stop-button { + color: ivory; + background-color: red; +} + +#action-button { + flex: none; } #reload-button { - flex: auto; - color: white; + color: ivory; background-color: blue; font-size: 1.5rem; font-weight: bold; - align-items: center; - justify-content: center; } #reload-button:hover { @@ -94,6 +342,12 @@ function stopSimulator(): void { } #reload-button:active { - background-color: red; + background-color: darkblue; +} + +#action { + color: ivory; + background-color: black; + padding: 1%; }