diff options
Diffstat (limited to 'resources/sass')
| -rw-r--r-- | resources/sass/_background.scss | 26 | ||||
| -rw-r--r-- | resources/sass/_navbar.scss | 16 | ||||
| -rw-r--r-- | resources/sass/_variables.scss | 19 | ||||
| -rw-r--r-- | resources/sass/app.scss | 11 |
4 files changed, 72 insertions, 0 deletions
diff --git a/resources/sass/_background.scss b/resources/sass/_background.scss new file mode 100644 index 0000000..452d4d2 --- /dev/null +++ b/resources/sass/_background.scss @@ -0,0 +1,26 @@ +html { + height: 100%; +} + +body { + width: 100%; + height: auto; + min-height:35rem; + background: linear-gradient(to bottom, rgba(1,1,1,.25) 0%, rgba(1,1,1,.45) 90%, rgba(2, 11, 26, 0.65) 100%), url("/img/world-bg.jpg"); + background-color: rgba(2, 11, 26, 0.65); + background-position: center; + background-repeat: no-repeat; + background-attachment: scroll; + background-size: cover; +} +.cover-container { + color: white; + max-width: 42em; +} +.cover { + padding: 0 1.5rem; +} +.cover .btn-lg { + padding: .75rem 1.25rem; + font-weight: 700; +} diff --git a/resources/sass/_navbar.scss b/resources/sass/_navbar.scss new file mode 100644 index 0000000..1542944 --- /dev/null +++ b/resources/sass/_navbar.scss @@ -0,0 +1,16 @@ +.navbar { + background-color: rgba(0,0,0,0) !important; +} +.navbar-toggler { + border-color: #808080; +} + +.navbar-dark .nav-link { + color: darken( #fff, 10% ) !important; +} + +@media( min-width: 768px ) { + .navbar-searchform { + margin-left: 0.5rem; + } +} diff --git a/resources/sass/_variables.scss b/resources/sass/_variables.scss new file mode 100644 index 0000000..0407ab5 --- /dev/null +++ b/resources/sass/_variables.scss @@ -0,0 +1,19 @@ +// Body +$body-bg: #f8fafc; + +// Typography +$font-family-sans-serif: 'Nunito', sans-serif; +$font-size-base: 0.9rem; +$line-height-base: 1.6; + +// Colors +$blue: #3490dc; +$indigo: #6574cd; +$purple: #9561e2; +$pink: #f66d9b; +$red: #e3342f; +$orange: #f6993f; +$yellow: #ffed4a; +$green: #38c172; +$teal: #4dc0b5; +$cyan: #6cb2eb; diff --git a/resources/sass/app.scss b/resources/sass/app.scss new file mode 100644 index 0000000..f01e9ac --- /dev/null +++ b/resources/sass/app.scss @@ -0,0 +1,11 @@ +// Fonts +@import url('https://fonts.googleapis.com/css?family=Nunito'); + +// Variables +@import 'variables'; + +// Bootstrap +@import '~bootstrap/scss/bootstrap'; + +@import 'background'; +@import 'navbar'; |
