Improve style, in particular forms

This commit is contained in:
riggraz
2019-08-19 16:43:32 +02:00
parent 983841800c
commit 7f2f536027
13 changed files with 108 additions and 62 deletions

View File

@@ -1 +1,7 @@
@import './bootstrap_custom.scss'
@import './bootstrap_custom.scss';
@import './navbar.scss';
@import './forms.scss';
.container {
max-width: 920px;
}

View File

@@ -0,0 +1,11 @@
@import "node_modules/bootstrap/scss/variables";
.field_with_errors {
label {
color: $danger;
}
input {
border-color: $danger;
}
}

View File

@@ -0,0 +1,12 @@
.navbar {
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: black;
margin-bottom: 1.5em;
.navbar-brand {
font-size: 18pt;
font-weight: 700;
}
}