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;