-
Notifications
You must be signed in to change notification settings - Fork 386
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CLDR-17803 site: update styling on markdown site (#3979)
- Loading branch information
Showing
8 changed files
with
444 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<!doctype html> | ||
<html> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<title>{{ page.title }}</title> | ||
<link rel="stylesheet" href="/site/assets/css/reports-v2.css" /> | ||
<link rel="stylesheet" href="/site/assets/css/page.css" /> | ||
</head> | ||
|
||
<body> | ||
<!-- <h1>{{ page.title }}</h1> --> | ||
<header> | ||
<div class="icon"><a href="http://www.unicode.org/"> <img border="0" | ||
src="http://www.unicode.org/webscripts/logo60s2.gif" align="middle" alt="[Unicode]" width="34" | ||
height="33"></a> | ||
<a class="bar" href="/"> | ||
<font size="3"> | ||
CLDR Site / {{page.title}} | ||
</font> | ||
</a> | ||
</div> | ||
<div class="bar"><a href="http://www.unicode.org" class="bar">Home</a> | ||
| <a href="http://www.unicode.org/sitemap/" class="bar">Site | ||
Map</a> | <a href="http://www.unicode.org/search/" class="bar">Search</a></div> | ||
</header> | ||
|
||
<section class="body"> | ||
{{ content }} | ||
</section> | ||
<footer> | ||
© 1991-2024 Unicode, Inc. Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries. See <a href="https://www.unicode.org/copyright.html">Terms of Use</a>. | ||
</footer> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/* mirror of div.body */ | ||
section.body { | ||
margin: 3em; | ||
} | ||
|
||
header { | ||
width: "100%"; | ||
background-color: #5555ff; | ||
display: flex; | ||
flex-direction: row; | ||
flex-wrap: wrap; | ||
border-bottom: 0.5em solid #EEEEFE; | ||
padding: 0.5em; | ||
} | ||
|
||
header > div { | ||
display: table-cell; | ||
} | ||
|
||
header > div.icon { | ||
flex-grow: 1; | ||
} | ||
|
||
footer { | ||
width: 100%; | ||
margin-left: auto; | ||
margin-right: auto; | ||
text-align: center; | ||
border-top: 0.5em solid #eeeefe; | ||
font-size: smaller; | ||
} | ||
|
||
|
||
/* copied from tr35.css */ | ||
|
||
.markdown-alert { | ||
border-left: 0.25em; | ||
padding-left: .5em; | ||
border-left-style: solid; | ||
} | ||
|
||
.markdown-alert-title { | ||
font-weight: bold; | ||
} | ||
|
||
.markdown-alert-title svg { | ||
margin-right: .5em; | ||
} | ||
|
||
.markdown-alert-note { | ||
border-color: blue; | ||
} | ||
|
||
.markdown-alert-note .markdown-alert-title { | ||
color: blue; | ||
} | ||
|
||
.markdown-alert-important { | ||
border-color: blueviolet; | ||
} | ||
|
||
.markdown-alert-important .markdown-alert-title { | ||
color: blueviolet; | ||
} |
Oops, something went wrong.