From b1a5691fae57664f6307e0952a06efda85c89a9c Mon Sep 17 00:00:00 2001 From: VakarisZ Date: Thu, 1 Oct 2020 15:09:43 +0300 Subject: [PATCH] Added stylesheet for custom monkey buttons --- .../cc/ui/src/styles/components/Buttons.scss | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 monkey/monkey_island/cc/ui/src/styles/components/Buttons.scss diff --git a/monkey/monkey_island/cc/ui/src/styles/components/Buttons.scss b/monkey/monkey_island/cc/ui/src/styles/components/Buttons.scss new file mode 100644 index 000000000..12ffd14ba --- /dev/null +++ b/monkey/monkey_island/cc/ui/src/styles/components/Buttons.scss @@ -0,0 +1,16 @@ +.monkey-submit-button { + border-color: #3f3f3f; + font-size: 1.3em; + width: 100%; + background-color: #3f3f3f; + color: $monkey-yellow; +} + +.monkey-submit-button:hover { + border-color: $monkey-yellow; + font-size: 1.3em; + font-weight: bold; + width: 100%; + background-color: $monkey-yellow; + color: #000000; +}