Skip to content

Instantly share code, notes, and snippets.

@ErisDS
Last active November 25, 2020 12:03
Show Gist options
  • Star 19 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save ErisDS/7e3455b70133640823c0 to your computer and use it in GitHub Desktop.
Save ErisDS/7e3455b70133640823c0 to your computer and use it in GitHub Desktop.
A Full and Comprehensive Style Test

Below is just about everything you'll need to style in the theme. Check the source code to see the many embedded elements within paragraphs.


Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

Lorem ipsum dolor sit amet, test link adipiscing elit. This is strong. Nullam dignissim convallis est. Quisque aliquam. This is emphasized. Donec faucibus. Nunc iaculis suscipit dui. 53 = 125. Water is H2O. Nam sit amet sem. Aliquam libero nisi, imperdiet at, tincidunt nec, gravida vehicula, nisl. The New York Times (That's a citation). Underline. Maecenas ornare tortor. Donec sed tellus eget sapien fringilla nonummy. Mauris a ante. Suspendisse quam sem, consequat at, commodo vitae, feugiat in, nunc. Morbi imperdiet augue quis tellus.

HTML and CSS are our tools. Mauris a ante. Suspendisse quam sem, consequat at, commodo vitae, feugiat in, nunc. Morbi imperdiet augue quis tellus. Praesent mattis, massa quis luctus fermentum, turpis mi volutpat justo, eu volutpat enim diam eget metus. To copy a file type COPY filename. Dinner's at 5:00. Let's make that 7. This text has been struck.


Media

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore.

Big Image

Test Image

Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.

Small Image

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore.

Small Test Image

Labore et dolore.


List Types

Definition List

Definition List Title
This is a definition list division.
Definition
An exact statement or description of the nature, scope, or meaning of something: our definition of what constitutes poetry.

Ordered List

  1. List Item 1
  2. List Item 2
  3. Nested list item A
  4. Nested list item B
  5. List Item 3

Unordered List

  • List Item 1
  • List Item 2
  • Nested list item A
  • Nested list item B
  • List Item 3

Table

Table Header 1 Table Header 2 Table Header 3
Division 1 Division 2 Division 3
Division 1 Division 2 Division 3
Division 1 Division 2 Division 3

Preformatted Text

Typographically, preformatted text is not the same thing as code. Sometimes, a faithful execution of the text requires preformatted text that may not have anything to do with code. Most browsers use Courier and that's a good default — with one slight adjustment, Courier 10 Pitch over regular Courier for Linux users.

Code

Code can be presented inline, like <?php bloginfo('stylesheet_url'); ?>, or within a <pre> block. Because we have more specific typographic needs for code, we'll specify Consolas and Monaco ahead of the browser-defined monospace font.

#container {
    float: left;
    margin: 0 -240px 0 0;
    width: 100%;
}

Blockquotes

Let's keep it simple. Italics are good to help set it off from the body text. Be sure to style the citation.

Good afternoon, gentlemen. I am a HAL 9000 computer. I became operational at the H.A.L. plant in Urbana, Illinois on the 12th of January 1992. My instructor was Mr. Langley, and he taught me to sing a song. If you'd like to hear it I can sing it for you. — HAL 9000

And here's a bit of trailing text.


Text-level semantics

The a element example The abbr element and abbr element with title examples The b element example The cite element example The code element example The del element example The dfn element and dfn element with title examples The em element example The i element example The ins element example The kbd element example The mark element example The q element inside a q element example The s element example The samp element example The small element example The span element example The strong element example The sub element example The sup element example The var element example The u element example


Forms

Inputs as descendents of labels (form legend) Text input Email input Search input Tel input URL input Password input File input Radio input Checkbox input Radio input Checkbox input Select field Option 01 Option 02 Textarea <textarea cols="30" rows="5" >Textarea text</textarea> Clickable inputs and buttons Reset (button) Button (button) Submit (button) box-sizing tests
Option 01Option 02
<textarea cols="30" rows="5" >Textarea text</textarea>
Reset (button)
Button (button)
Submit (button)

Embeds

Sometimes all you want to do is embed a little love from another location and set your post alive.

Video

Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

<iframe src="//player.vimeo.com/video/103224792?title=0&byline=0&portrait=0" width="600" height="338" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>

Culpa qui officia deserunt mollit anim id est laborum.

Slides

Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

<script async class="speakerdeck-embed" data-id="34d2856027ce01316b5d621ab8e7d421" data-ratio="1.33333333333333" src="//speakerdeck.com/assets/embed.js"></script>

Culpa qui officia deserunt mollit anim id est laborum.

Audio

Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

<iframe width="100%" height="450" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/169381837&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true"></iframe>

Culpa qui officia deserunt mollit anim id est laborum.

Code

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt.

var c = new Sketch.create({autoclear: false}),
    bigCircle = 50,
    littleCircle = 5,
    // The velocity value determines how much to move the spinner head (in radians).
    velocity = 0.105,
    hue = 0,
    // The alpha value below determines the length of the spinner's tail.
    bg = 'rgba(40,40,40,.075)';
    Spinner = function() {};

Spinner.prototype.setup = function() { this.x = c.width / 2; this.y = c.height / 2 - bigCircle; this.rotation = 0; } Spinner.prototype.update = function() { this.rotation += velocity; this.rotation = this.rotation % TWO_PI; this.x = c.width /2 + cos(this.rotation) * bigCircle; this.y = c.height / 2 + sin(this.rotation) * bigCircle; } Spinner.prototype.draw = function() { c.fillStyle = 'hsl('+hue+',50%,50%)'; c.beginPath(); c.arc(this.x, this.y, littleCircle, 0, TWO_PI); c.fill(); c.closePath(); } c.setup = function() { spinner = new Spinner(); spinner.setup(); } c.update = function() { spinner.update(); hue = ++hue % 360; } c.draw = function() { spinner.draw(); c.fillStyle = bg; c.fillRect(0,0,c.width,c.height); }

See the Pen Simple Rotating Spinner by Rob Glazebrook (@rglazebrook) on CodePen.

<script async src="//codepen.io/assets/embed/ei.js"></script>

Isn't it beautiful.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment