-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 01a60cd
Showing
49 changed files
with
16,159 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,236 @@ | ||
<!DOCTYPE HTML> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<link rel="stylesheet" type="text/css" href="resources/css/theme.css"> | ||
<link rel="stylesheet" href="resources/css/core/base.css"/> | ||
<link rel="stylesheet" href="resources/css/structures/layout.css"/> | ||
|
||
|
||
<link rel="stylesheet" type="text/css" href="resources/css/demo.css"> | ||
|
||
<!-- div.component>h2.header+div.descript+pre.code>code>h3.title+p^div.component-example --> | ||
<title>Base</title> | ||
<style> | ||
.components{ | ||
padding:10px | ||
} | ||
</style> | ||
</head> | ||
<body class="page-wrap"> | ||
<h2 class="title">Typography</h2> | ||
|
||
<div class="example"> | ||
<div class="example-label"> | ||
<h4>Default Font Size 16px</h4> | ||
<p></p> | ||
</div> | ||
<div class="components"> | ||
<p>Headings font sizes are defined in <code>em</code>. | ||
</p> | ||
</div> | ||
</div> | ||
|
||
|
||
<h2 class="title">Headings</h2> | ||
<div class="example"> | ||
<div class="example-label"> | ||
<h4>Default Font Stye Seugo UI</h4> | ||
<p></p> | ||
</div> | ||
<div class="components"> | ||
<h1>Heading 1</h1> | ||
<h2>Heading 2</h2> | ||
<h3>Heading 3</h3> | ||
<h4>Heading 4</h4> | ||
<h5>Heading 5</h5> | ||
<h6>Heading 6</h6> | ||
</div> | ||
</div> | ||
|
||
<div class="example"> | ||
<div class="example-label"> | ||
<h3>Secondary Headings</h3> | ||
<p></p> | ||
</div> | ||
<div class="components"> | ||
<h1>Heading 1 <small>Heading 1</small></h1> | ||
<h2>Heading 2 <small>Heading 2</small></h2> | ||
<h3>Heading 3 <small>Heading 3</small></h3> | ||
<h4>Heading 4 <small>Heading 4</small></h4> | ||
<h5>Heading 5 <small>Heading 5</small></h5> | ||
<h6>Heading 6 <small>Heading 6</small></h6> | ||
</div> | ||
</div> | ||
|
||
<div class="example"> | ||
<div class="example-label"> | ||
<h3>Super Script and Subscript</h3> | ||
<p></p> | ||
</div> | ||
<div class="components"> | ||
<p>H<sub>2</sub>O</p> | ||
<p>10<sup>2</sup></p> | ||
</div> | ||
</div> | ||
|
||
|
||
<h2 class="title">Lists</h2> | ||
|
||
<div class="example"> | ||
<div class="example-label"> | ||
<h3>Unordered List</h3> | ||
<p></p> | ||
</div> | ||
<div class="components"> | ||
<ul> | ||
<li>list item 1</li> | ||
<li>list item 1 | ||
<ul> | ||
<li>list item 2</li> | ||
<li>list item 2 | ||
<ul> | ||
<li>list item 3</li> | ||
<li>list item 3</li> | ||
</ul> | ||
</li> | ||
<li>list item 2</li> | ||
<li>list item 2</li> | ||
</ul> | ||
</li> | ||
<li>list item 1</li> | ||
<li>list item 1</li> | ||
</ul> | ||
</div> | ||
</div> | ||
|
||
<div class="example"> | ||
<div class="example-label"> | ||
<h3>Ordered List</h3> | ||
<p></p> | ||
</div> | ||
<div class="components"> | ||
<ol> | ||
<li>list item 1</li> | ||
<li>list item 1 | ||
<ol> | ||
<li>list item 2</li> | ||
<li>list item 2 | ||
<ol> | ||
<li>list item 3</li> | ||
<li>list item 3</li> | ||
</ol> | ||
</li> | ||
<li>list item 2</li> | ||
<li>list item 2</li> | ||
</ol> | ||
</li> | ||
<li>list item 1</li> | ||
<li>list item 1</li> | ||
</ol> | ||
</div> | ||
</div> | ||
|
||
<div class="example"> | ||
<div class="example-label"> | ||
<h3>Definition Lists</h3> | ||
<p></p> | ||
</div> | ||
<div class="components"> | ||
<dl> | ||
<dt>Definition term</dt> | ||
<dd>Definition description</dd> | ||
|
||
<dt>Definition term</dt> | ||
<dd>Definition description</dd> | ||
<dd>Definition description</dd> | ||
|
||
<dt>Definition term</dt> | ||
<dt>Definition term</dt> | ||
<dd>Definition description</dd> | ||
</dl> | ||
</div> | ||
</div> | ||
|
||
<h2 class=" title">Blockquotes</h2> | ||
|
||
|
||
<div class="example"> | ||
<div class="example-label"> | ||
<h3></h3> | ||
<p></p> | ||
</div> | ||
<div class="components"> | ||
<blockquote > | ||
One small step for man, one giant leap for mankind. | ||
</blockquote> | ||
</div> | ||
</div> | ||
|
||
|
||
<h2 class=" title">Abbreviations</h2> | ||
<div class="example"> | ||
<div class="example-label"> | ||
<h3></h3> | ||
<p></p> | ||
</div> | ||
<div class="components"> | ||
<p> | ||
<abbr title="Computer Information Science">CIS</abbr> is the only department at <abbr title="Heaven on Earth...">NCU</abbr> | ||
</p> | ||
</div> | ||
</div> | ||
|
||
|
||
|
||
<h2 class="title">Addresses</h2> | ||
<div class="example"> | ||
<div class="example-label"> | ||
<h3></h3> | ||
<p></p> | ||
</div> | ||
<div class="components"> | ||
<address> | ||
<b>Northern Caribbean University</b> <br> | ||
P.O. Mandeville <br> | ||
Manchester Jamaica. <br> | ||
</address> | ||
</div> | ||
</div> | ||
|
||
|
||
<h2 class="title">Inline Styles</h2> | ||
<div class="example"> | ||
<div class="example-label"> | ||
<h3></h3> | ||
<p></p> | ||
</div> | ||
<div class="components"> | ||
<p> | ||
<cite>cite element</cite> example<br> | ||
The <code>code element</code> example<br> | ||
The <del>del element</del> example<br> | ||
The <dfn>dfn element</dfn> and <dfn title="Title text">dfn element with title</dfn> examples<br> | ||
The <em>em element</em> example<br> | ||
The <i>italic element</i> example<br> | ||
The <ins>ins element</ins> example<br> | ||
The <kbd>kbd element</kbd> example<br> | ||
The <mark>mark element</mark> example | ||
</p> | ||
|
||
<p> | ||
The <q>q element <q>inside</q> a q element</q> example<br> | ||
The <s>s element</s> example<br> | ||
The <samp>samp element</samp> example<br> | ||
The <small>small element</small> example<br> | ||
The <strong>strong element</strong> example<br> | ||
The <u>underline element</u> example<br> | ||
The <var>var element</var> example | ||
</p> | ||
</div> | ||
</div> | ||
|
||
|
||
|
||
</body> | ||
</html> |
Oops, something went wrong.