From b5d922ef1689f56f8dd944e82d993fe6e67f17a8 Mon Sep 17 00:00:00 2001 From: efarooqui Date: Fri, 21 Aug 2020 09:38:23 -0700 Subject: [PATCH] Updated view with validation button --- views/blueprints.hbs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/views/blueprints.hbs b/views/blueprints.hbs index d4b67f2..5e521bd 100644 --- a/views/blueprints.hbs +++ b/views/blueprints.hbs @@ -9,6 +9,7 @@ {{#each urls}}
{{ this }}
+
Validate
{{/each}} {{ else }} @@ -25,6 +26,7 @@ :root { --grey: #8a8a8a; --btn-width: 200px; + --validate-btn-width: 150px; } .main-container { display: flex; @@ -79,6 +81,21 @@ color: black; } +.bp-validate-button { + transition: all 0.3s ease; + text-transform: uppercase; + font-size: 12pt; + font-weight: bold; + width: var(--validate-btn-width); + display: flex; + justify-content: center; + align-items: center; + border: 3px solid red; + padding: .5em; + text-decoration: none; + color: red; +} + .bp-update-container:hover { background-color: black; transition: all 0.3s ease;