From a6cf12e46b0cb27b4d5e96a81696cc136a791225 Mon Sep 17 00:00:00 2001 From: frinklai Date: Mon, 27 May 2019 13:38:02 +0800 Subject: [PATCH] add basic control btn and its css setting --- ui/web/css/gripper_control.css | 68 +++++++++++++++ ui/web/main_ui.html | 146 +++++++++++++++++++++++++++++++++ 2 files changed, 214 insertions(+) create mode 100644 ui/web/css/gripper_control.css diff --git a/ui/web/css/gripper_control.css b/ui/web/css/gripper_control.css new file mode 100644 index 0000000..11c4b07 --- /dev/null +++ b/ui/web/css/gripper_control.css @@ -0,0 +1,68 @@ +/*===========================================*/ + +/* ================================================================= */ +/* ==================== object id properties ==================== */ +/* ================================================================= */ +/* #btn_Catch_finger1 +{ + margin: 10px; + font-size: 18px; + border-radius: 30px; + border-style: ridge; + width: 120px; + height: 35px; + text-align: center; + background-color: lightblue; +}*/ + +#btn_stop_all +{ + margin: 10px; + font-size: 18px; + border-radius: 30px; + border-style: ridge; + width: 150px; + height: 40px; + text-align: center; + background-color: red; +} + +#btn_disable_all +{ + margin: 10px; + font-size: 18px; + border-radius: 30px; + border-style: ridge; + width: 150px; + height: 40px; + text-align: center; + background-color: red; +} + +/* ================================================================= */ +/* ==================== object class properties ==================== */ +/* ================================================================= */ +.multi_finger_Control +{ + margin: 10px; + font-size: 18px; + border-radius: 30px; + border-style: ridge; + width: 150px; + height: 40px; + text-align: center; + background-color: lightgreen; +} + +.single_finger_Control +{ + margin: 10px; + font-size: 18px; + border-radius: 30px; + border-style: ridge; + width: 150px; + height: 40px; + text-align: center; + background-color: lightblue; +} + diff --git a/ui/web/main_ui.html b/ui/web/main_ui.html index e69de29..4975a89 100644 --- a/ui/web/main_ui.html +++ b/ui/web/main_ui.html @@ -0,0 +1,146 @@ + + + + + AI_Bot UI + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + +
+ + + +
+ + + + + + + + \ No newline at end of file