From 92a9cc00579f29de53cc46c5a068b6bc4cc3d0ae Mon Sep 17 00:00:00 2001 From: Marc Ducobu Date: Tue, 11 Nov 2014 08:49:56 +0100 Subject: [PATCH] Adding _custom.scss to git --- .gitignore | 3 ++- Resources/public/stylesheets/sass/_custom.scss | 16 ++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 Resources/public/stylesheets/sass/_custom.scss diff --git a/.gitignore b/.gitignore index f5a3d8b8f..af9dc8eea 100644 --- a/.gitignore +++ b/.gitignore @@ -26,4 +26,5 @@ Resources/assets/gumpy/.sass-cache Resources/.sass-cache/ Resources/bower_components/ Resources/node_modules/ -Resources/public/stylesheets/sass/ \ No newline at end of file +Resources/public/stylesheets/sass/* +!Resources/public/stylesheets/sass/_custom.scss \ No newline at end of file diff --git a/Resources/public/stylesheets/sass/_custom.scss b/Resources/public/stylesheets/sass/_custom.scss new file mode 100644 index 000000000..d4be817cf --- /dev/null +++ b/Resources/public/stylesheets/sass/_custom.scss @@ -0,0 +1,16 @@ +// YOUR CUSTOM SCSS +div#general { + background: none repeat scroll 0 0 #2980b9; + color: #FFF; + padding: 0.5em; +} + +html,body { min-height:100%; } + +.title { + font-size: 2em; +} + +.subtitle { + font-size: 1.5em; +} \ No newline at end of file