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

Unified Diff: icu4c.css

Issue 845603002: Update ICU to 54.1 step 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/icu.git@master
Patch Set: remove unusued directories Created 5 years, 11 months 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
« no previous file with comments | « icu.gypi ('k') | license.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: icu4c.css
diff --git a/icu4c.css b/icu4c.css
index b43f5facaf57660243675cecaaa721d34ea640cb..58fe1f3a44fe876778b831bc3d8c94145cb479a0 100644
--- a/icu4c.css
+++ b/icu4c.css
@@ -1,6 +1,6 @@
/*
* Default CSS style sheet for the ICU4C Open Source readme
- * Copyright (C) 2005-2011, International Business Machines
+ * Copyright (C) 2005-2014, International Business Machines
* Corporation and others. All Rights Reserved.
*/
@@ -8,7 +8,7 @@
body,p,li,ol,ul,th,td {
font-size: 1em;
- font-family: "Arial", "Helvetica", sans-serif;
+ font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}
body {
@@ -19,10 +19,33 @@ body.draft {
background-image: url(images/draftbg.png);
}
+body .only-milestone,
+body .only-draft,
+body .only-rc {
+ display: none;
+}
+
+body.milestone .only-milestone {
+ display: inherit !important;
+}
+
+body.draft .only-draft {
+ display: inherit !important;
+}
+
+body.rc .only-rc {
+ display: inherit !important;
+}
+
+
.mainbody {
padding: 1em;
}
+
+h1,h2,h3,h4,h5 {
+ font-family: Georgia, "Times New Roman", Times, serif;
+}
/*
* Customize the headers to have less space around them than usual
*/
@@ -34,25 +57,17 @@ h1 {
padding-top: .5em;
font-weight: 700;
font-size: 20pt;
- font-family: Georgia, "Times New Roman", Times, serif;
- border-width: 2px;
- border-style: solid;
text-align: center;
- width: 100%;
- font-size: 200%;
+ font-size: 2em;
font-weight: bold;
}
h2 {
- border-top: 2px solid #22d;
- border-left: 2px solid #22d;
margin-bottom: 0.5em;
padding-left: 4px;
margin-top: 12pt;
font-weight: 700;
font-size: 2em;
- font-family: Georgia, "Times New Roman", Times, serif;
- background-color: #eee;
page-break-before: always;
}
@@ -67,16 +82,12 @@ h2 a:hover {
}
h3 {
- border-top: 1px solid gray;
- color: #1e1c46;
margin-bottom: 0pt;
- margin-top: 12pt;
padding-left: 0;
margin-left: 1em;
- margin-top: 0.2em;
- padding-bottom: 0.4em;
+ margin-top: 1em;
+ padding-bottom: 0.2em;
font-size: 1.5em;
- font-family: Georgia, "Times New Roman", Times, serif;
}
h3 a {
@@ -95,7 +106,6 @@ h4 {
margin-top: 12pt;
font-size: 1.0em;
font-weight: bolder;
- font-family: Georgia, "Times New Roman", Times, serif;
}
h4 a {
@@ -121,6 +131,18 @@ p,pre,table,ul,ol,dl {
margin-left: 2em;
}
+p {
+ margin-top: 0.5em;
+ margin-bottom: 0.5em;
+}
+
+/*
+ * Add a little bit of space above li's
+ */
+li {
+ margin-top: 0.25em;
+}
+
/*
* Navigation sidebar on the left hand of most pages
*/
@@ -264,6 +286,18 @@ td.release-line,th.release-line {
margin-left: 1em;
}
+
+p.note::before {
+ content: 'Note:';
+ font-weight: bold;
+ margin-right: 1em;
+}
+p.note {
+ border: 1px solid gray;
+ padding: 0.5em;
+ background-color: #fdfdd9;
+}
+
samp {
margin-left: 1em;
margin-right: 2em;
@@ -425,34 +459,39 @@ div.indent {
}
ul.TOC {
- list-style-type: none;
- padding-left: 1em;
- font-size: larger;
+ font-size: medium;
}
-ul.TOC li a {
- font-weight: bold;
+ul.TOC,
+ul.TOC li,
+ul.TOC li ul,
+ul.TOC li ul li {
+ margin-left: 0.25em;
+ margin-top: 0.25em;
}
-ul.TOC li ul li a {
- font-weight: normal;
- list-style-type: none;
- font-size: small;
+ul.TOC li {
+ padding-left: 1em;
+ margin-left: 0.25em;
}
-
-ul.TOC li ul {
- margin-left: 0;
- padding-left: 2em;
- font-weight: normal;
- list-style-type: none;
+ul.TOC li li {
+ padding-left: 1em;
+ margin-left: 0.25em;
}
pre.samp,samp {
+ margin-top: 0.5em;
+ margin-bottom: 0.5em;
margin-left: 1em;
border-style: groove;
padding: 1em;
display: block;
- background-color: #EEEEEE
+ background-color: #f9fbfa;
+ font-family: "Source Code Pro", "Everson Mono", "Courier New", Courier, mono;
+ border-radius: 12px;
+ border-bottom-color: gray;
+ border-right-color: gray;
+ white-space: pre-wrap;
}
td.proto {
« no previous file with comments | « icu.gypi ('k') | license.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698