diff --git a/app/assets/stylesheets/new_styles/_base.scss b/app/assets/stylesheets/new_styles/_base.scss index 719aaea8b..4953f409b 100644 --- a/app/assets/stylesheets/new_styles/_base.scss +++ b/app/assets/stylesheets/new_styles/_base.scss @@ -2,6 +2,16 @@ body { background-image : image_url("pattern.png"); } +/* gross hax */ +#container { + position : absolute; + height : 100%; + width : 100%; + + left : 0; + top : 0; +} + /* new link color */ a { color : rgb(42,156,235) } diff --git a/app/assets/stylesheets/new_styles/_profile.scss b/app/assets/stylesheets/new_styles/_profile.scss index 0f769d14c..52ab0312d 100644 --- a/app/assets/stylesheets/new_styles/_profile.scss +++ b/app/assets/stylesheets/new_styles/_profile.scss @@ -1,4 +1,6 @@ #profile { + height : 100%; + color : #fff; background : { color : #333; @@ -8,12 +10,11 @@ Optimal imagemagick manipulation settings for uploaded image (via trial & error): - `convert -brightness-contrast -40x-50` + `mogrify -brightness-contrast -40x-50` NOTE: I noticed that just turning the brightness down had an adverse affect on contrast, thus the "washing out" at -50 contrast. For more info on this specific command, read the documentation on it here: http://www.imagemagick.org/script/command-line-options.php#brightness-contrast */ - //image : url('/imagetest.jpg'); size : cover; attachment : fixed; diff --git a/public/imagetest-unmodified.jpg b/public/imagetest-unmodified.jpg deleted file mode 100644 index db16d1c05..000000000 Binary files a/public/imagetest-unmodified.jpg and /dev/null differ diff --git a/public/imagetest.jpg b/public/imagetest.jpg deleted file mode 100644 index 85df6071e..000000000 Binary files a/public/imagetest.jpg and /dev/null differ diff --git a/public/imagetest2.jpg b/public/imagetest2.jpg deleted file mode 100644 index f47d1ad51..000000000 Binary files a/public/imagetest2.jpg and /dev/null differ