Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CLDR-17803 site: update styling on markdown site #3979

Merged
merged 4 commits into from
Aug 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,16 @@ exclude:

#include:
# - site/

# _config.yml

# everything under 'site' should default to the 'page' layout
defaults:
- scope:
path: 'site'
values:
layout: page

collections:
site:
output: true
36 changes: 36 additions & 0 deletions docs/_layouts/page.html
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>&nbsp;&nbsp;
<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>
2 changes: 2 additions & 0 deletions docs/ldml/tr35-general.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,8 @@ The LDML specification is divided into the following parts:
* Table: [Element contextTransformUsage type attribute values](#contextTransformUsage_type_attribute_values)
* [Choice Patterns](#Choice_Patterns)
* [Annotations and Labels](#Annotations)
* [Usage Model](#usage-model)
* [cp attribute](#cp-attribute)
* [Synthesizing Sequence Names](#SynthesizingNames)
* [Table: Synthesized Emoji Sequence Names](#table-synthesized-emoji-sequence-names)
* [Annotations Character Labels](#Character_Labels)
Expand Down
64 changes: 64 additions & 0 deletions docs/site/assets/css/page.css
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;
}
Loading
Loading