]> git.donarmstrong.com Git - lilypond.git/commitdiff
Web: revise site background
authorPaul Morris <paulwmorris@gmail.com>
Thu, 19 Feb 2015 17:25:54 +0000 (12:25 -0500)
committerJames Lowe <pkx166h@gmail.com>
Thu, 19 Mar 2015 10:24:41 +0000 (10:24 +0000)
Issue 4299

green fade-out gradient at both top corners
site background is slightly off-white
column backgrounds are pure-white
adjust search box color
update ie css file

Documentation/css/lilypond-website-ie-fixes.css
Documentation/css/lilypond-website.css
Documentation/pictures/background-top-left.png [new file with mode: 0644]
Documentation/pictures/background-top-right.png [new file with mode: 0644]

index 86fe49ad87ec1fdbce214b5d9cbe53548ec2b161..9642c087ee18a08b2e04b58ad23b422a6c3c5709 100644 (file)
@@ -32,20 +32,6 @@ div#tocframe {
   background: url(../pictures/nav2-active.png);
 }
 
-/* Divs */
-
-#quickSummary .subheading {
-  background: #fff url(../pictures/summary-gradient.png) repeat-y 0 0;
-}
-
-a[name="Stable"] + h4 {
-  background: #bdee9d url(../pictures/color1-bg.png) repeat-x top left;
-}
-
-a[name="Unstable"] + h4 {
-  background: #fad58c url(../pictures/color3-bg.png) repeat-x top left;
-}
-
 /* Columns */
 
 .column-center-top h3 {
@@ -54,7 +40,8 @@ a[name="Unstable"] + h4 {
 
 .column-left-top h3,
 .column-left-bottom h3,
-.column-center-middle-color2 h3 {
+.column-center-middle-color2 h3,
+.news-item h3 {
   background: #adce82 url(../pictures/color2-bg.png) repeat-x top left;
 }
 
index 30b7cec9f3e2fc6875bc9fe7437b285991fc841b..0115fbd417aa59500bc3f812aada29bfed2bc14d 100644 (file)
@@ -15,10 +15,16 @@ body {
   max-width: 70em;
   font-size: 95%;
   line-height: 1.5;
-  background: #fff url(../pictures/background-image.png) no-repeat 0 0;
   text-align: justify;
   padding: 0;
   margin: 0 auto;
+  background-color: rgb(245, 252, 242);
+  background-image: url(../pictures/background-top-right.png),
+    url(../pictures/background-top-left.png);
+  background-position: top right, top left;
+  background-repeat: no-repeat, no-repeat;
+  /* fallback for IE8 which doesn't support multiple backgrounds */
+  background: url(../pictures/background-top-left.png) no-repeat top left;
 }
 
 hr {
@@ -96,7 +102,7 @@ div#tocframe {
 }
 
 #tocframe > ul:first-child > li:first-child a span {
-  background: url("../pictures/lily-home-32x32.png") no-repeat scroll 0% 40% transparent;
+  background: url(../pictures/lily-home-32x32.png) no-repeat scroll 0% 40% transparent;
   padding: 16px 0px 16px 38px;
 }
 
@@ -125,7 +131,7 @@ div#tocframe {
   width: 92%;
   font-size: 90%;
   color: rgb(85, 85, 85);
-  background: rgb(200, 230, 200);
+  background: rgb(235, 242, 232);
   padding: 0.1em 0.1em 0.1em 0.6em;
   border: 0;
   margin: 0;
@@ -611,7 +617,7 @@ div.float-right a.clickable {
 .column-right-top,
 .column-right-bottom,
 .news-item {
-  background: #f5fffa;
+  background: #fff;
   border-radius: 5px;
 }
 
diff --git a/Documentation/pictures/background-top-left.png b/Documentation/pictures/background-top-left.png
new file mode 100644 (file)
index 0000000..0587791
Binary files /dev/null and b/Documentation/pictures/background-top-left.png differ
diff --git a/Documentation/pictures/background-top-right.png b/Documentation/pictures/background-top-right.png
new file mode 100644 (file)
index 0000000..a8a571a
Binary files /dev/null and b/Documentation/pictures/background-top-right.png differ