From c91bddfb5000e8422f92cc6b22597a5fb11f111e Mon Sep 17 00:00:00 2001 From: Mosa Al-Husseini Date: Tue, 9 Apr 2024 15:21:41 +0200 Subject: [PATCH] [TASK] add custom css for external form --- theme/css/custom.css | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/theme/css/custom.css b/theme/css/custom.css index a9afee9..d2ee643 100644 --- a/theme/css/custom.css +++ b/theme/css/custom.css @@ -206,3 +206,31 @@ justify-content: center; } } + + +.form-random-forest-external input { + background-clip: padding-box; + background-color: #fff; + border: 1px solid #ced4da; + border-radius: .25rem; + display: block; + padding: .375rem .5rem; + transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out; + width: 100%; +} + +.form-random-forest-external ._field-wrapper { + margin-bottom: 20px; +} + +.form-random-forest-external button { + --border-radius: 27px; + --color: #fff; + --bg: #3aaa35; + border: 1px solid #3aaa35; + font-family: Open Sans, sans-serif; + font-style: normal; + font-weight: 600; + text-decoration: none; + text-transform: uppercase; +}