X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=ui%2Fweb%2Fsrc%2Fviews%2FChargingStationsView.vue;h=6f589ccc6a8030136f4449ac5de1a2e64daaf78e;hb=c63085548339556d66ced562e9649a84d0544ff4;hp=5639c99174d0c9af6480561d87410d17e441781e;hpb=1eb5f59286fc00c7f84317e82bd794d1fa126ad8;p=e-mobility-charging-stations-simulator.git diff --git a/ui/web/src/views/ChargingStationsView.vue b/ui/web/src/views/ChargingStationsView.vue index 5639c991..6f589ccc 100644 --- a/ui/web/src/views/ChargingStationsView.vue +++ b/ui/web/src/views/ChargingStationsView.vue @@ -1,42 +1,238 @@ @@ -89,23 +297,45 @@ const stopSimulator = (): void => { flex-direction: column; } +#ui-server-container { + display: flex; + justify-content: center; +} + +#ui-server-selector { + width: 100%; + background-color: rgb(239, 239, 239); + font: small-caption; + text-align: center; +} + +#ui-server-selector:hover { + background-color: rgb(229, 229, 229); +} + #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; + font-size: 2rem; } #reload-button:hover { @@ -113,6 +343,12 @@ const stopSimulator = (): void => { } #reload-button:active { - background-color: red; + background-color: darkblue; +} + +#action { + color: ivory; + background-color: black; + padding: 1%; }