Module: website Branch: master Commit: aacacdde0e890fd6eb3684e0b14da1e5a4e6ad1f URL: http://source.winehq.org/git/website.git/?a=commit;h=aacacdde0e890fd6eb3684e... Author: Jeremy Newman <jnewman(a)codeweavers.com> Date: Wed Sep 12 17:02:35 2012 -0500 added cornerround, and white background for content wells --- styles.css | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/styles.css b/styles.css index da0d476..65c948f 100644 --- a/styles.css +++ b/styles.css @@ -100,6 +100,9 @@ BODY { padding: 85px 10px 10px 100px; } +/* set background color of content wells */ +#main_content .content, #main_left .content, #main_right .content { background-color: #fff; } + /* main content well front page left column */ #main_left { width: 58%; @@ -226,6 +229,14 @@ hr text-align: left; } +/* rounded corners */ +.cornerround +{ + -moz-border-radius: 5px; + -webkit-border-radius: 5px; + border-radius: 5px; +} + /* Rounded Corner Box */ div.rbox { display:block; margin: 0px; } div.rbox b.rtop, b.rbottom { display:block; margin: 0px; }