diff --git a/app/scss/components.scss b/app/scss/components.scss index f81fc527..e205b4c4 100644 --- a/app/scss/components.scss +++ b/app/scss/components.scss @@ -99,6 +99,14 @@ a:hover { font-size: 100%; } +header { + .button, .buttonset li a, input[type=submit], input[type=text], + input[type=password], textarea, select { + background: rgba(255,255,255,0.1); + border: 1px solid rgba(255,255,255,0.2); + } +} + input[type=text], input[type=password], textarea, select { text-align: left; } diff --git a/app/scss/page.scss b/app/scss/page.scss index ab01b879..708ec82f 100644 --- a/app/scss/page.scss +++ b/app/scss/page.scss @@ -27,7 +27,9 @@ header h1, header p, header form { header { padding: 30px; - background: #258; + background: #258 url("jumbotron.png"); + background-position: center; + background-size: cover; } header p { diff --git a/app/static/jumbotron.png b/app/static/jumbotron.png new file mode 100644 index 00000000..5df9f9a0 Binary files /dev/null and b/app/static/jumbotron.png differ