diff options
| author | horus | 2020-02-20 15:35:53 +0100 |
|---|---|---|
| committer | horus | 2020-02-20 15:35:53 +0100 |
| commit | 0edb438872796902d3e4d3c2eea791f6af1956aa (patch) | |
| tree | 849dca17ee23b25ec81808d1c981afc64e8ca33b /resources/sass | |
| parent | 9ea335ab9c8f9e17e8ce8b6a7e76962bec7ed418 (diff) | |
| download | zeitumstellung-0edb438872796902d3e4d3c2eea791f6af1956aa.tar.gz | |
Supports iCal-Feed and styled website with bootstrap.css.
Diffstat (limited to 'resources/sass')
| -rw-r--r-- | resources/sass/_variables.scss | 19 | ||||
| -rw-r--r-- | resources/sass/app.scss | 14 |
2 files changed, 32 insertions, 1 deletions
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 index 8337712..8352c35 100644 --- a/resources/sass/app.scss +++ b/resources/sass/app.scss @@ -1 +1,13 @@ -// +// Fonts +@import url('https://fonts.googleapis.com/css?family=Nunito'); + +// Variables +@import 'variables'; + +// Bootstrap +@import '~bootstrap/scss/bootstrap'; + +#index .btn { + margin-top: .25rem; + margin-bottom: .25rem; +} |
