diff --git a/public/stylesheets/common.css b/public/stylesheets/common.css index 357d3ffd7c..95c5399d9e 100644 --- a/public/stylesheets/common.css +++ b/public/stylesheets/common.css @@ -506,7 +506,8 @@ html { body { font: 12px'Noto Sans', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, Sans-Serif; color: #707070; - background: #eee no-repeat linear-gradient(to bottom, #d7d7d7 0%, #eeeeee 116px); + background: #eee; + background-image: linear-gradient(to bottom, #d7d7d7 0%, #eeeeee 116px); overflow-x: hidden; } a, diff --git a/public/stylesheets/dark.css b/public/stylesheets/dark.css index 639392414d..1aefcd4e7f 100644 --- a/public/stylesheets/dark.css +++ b/public/stylesheets/dark.css @@ -1,5 +1,6 @@ body.dark { - background: #1a1a1a linear-gradient(to bottom, #2c2c2c 0%, #1a1a1a 116px); + background-color: #1a1a1a; + background-image: linear-gradient(to bottom, #2c2c2c 0%, #1a1a1a 116px); color: #8c8c8c; } body.dark a, diff --git a/public/stylesheets/user-show.css b/public/stylesheets/user-show.css index c77a4496cb..29682e02d1 100644 --- a/public/stylesheets/user-show.css +++ b/public/stylesheets/user-show.css @@ -19,6 +19,9 @@ div.user_show div.content_box_top > .trophy { float: right; margin-top: -46px; } +div.user_show div.content_box_top > .trophy:first-child { + margin-right: 50px; +} div.user_show .honorific { display: inline-block; margin-top: 1em;