Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(174)

Unified Diff: utils/apidoc/static/styles.css

Issue 9019001: Tweak dartdoc look to match dartlang.org a bit more. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: utils/apidoc/static/styles.css
diff --git a/utils/dartdoc/static/styles.css b/utils/apidoc/static/styles.css
similarity index 96%
copy from utils/dartdoc/static/styles.css
copy to utils/apidoc/static/styles.css
index 728c42de6404830931b28df0d99c718c6f939b17..42cf1788d9085113de668eeb60d3aacd9b12b707 100644
--- a/utils/dartdoc/static/styles.css
+++ b/utils/apidoc/static/styles.css
@@ -6,8 +6,10 @@ body, h1, h2, h3, h4, li, ol, p, pre, section, ul {
body {
font-family: Georgia, serif;
- background: #e4e4e4;
+ background: #e8e8e8;
color: #333;
+ background-image: url('button-textured.png');
+ background-repeat: repeat;
}
h1 {
@@ -55,16 +57,16 @@ pre, code {
}
a {
- color: hsl(220, 50%, 50%);
+ color: #15c;
text-decoration: none;
}
a:hover {
- color: hsl(220, 100%, 70%);
+ text-decoration: underline;
}
a:visited {
- color: hsl(270, 50%, 40%);
+ color: #15c;
}
li {
@@ -88,11 +90,11 @@ hr + h2 {
}
.page {
Emily Fortuna 2011/12/21 18:27:25 Is it possible to make the page go all the way dow
Bob Nystrom 2011/12/21 18:34:20 It is, but I actually kind of like the way it look
- max-width: 960px; /* 43 x 22px */
+ max-width: 1000px; /* 43 x 22px */
background: #fff;
margin: 0 auto 22px auto;
- border: solid 1px #ccc;
border-top: none;
+ box-shadow: 0 0 50px #888;
}
.nav {

Powered by Google App Engine
This is Rietveld 408576698