Style Guide: Difference between revisions
From Freephile Wiki
Created page with "A long time ago, I created a script that would parse a CSS file and generate the unwritten style guide that's embodied in it. Until I resurrect that script, you might need to..." |
No edit summary |
||
Line 1: | Line 1: | ||
A long time ago, I created a script that would parse a CSS file and generate the unwritten style guide that's embodied in it. Until I resurrect that script, you might need to refer to other helpful resources on creating a [http://designmodo.com/create-style-guides/ Style Guide] | A long time ago, I created a script that would parse a CSS file and generate the unwritten style guide that's embodied in it. Until I resurrect that script, you might need to refer to other helpful resources on creating a [http://designmodo.com/create-style-guides/ Style Guide] | ||
== Really Simple Example == | |||
<html> | |||
<div style="background-color:#212121; | |||
padding-bottom: 9px; | |||
padding-left: 12px; | |||
padding-right: 12px; | |||
padding-top: 9px;"> | |||
<span style="color:white;">This is a navline, or header</span></div> | |||
<h2 style="color: #2c2c2c; display: block; font-family: 'Trebuchet MS', 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 19px; font-weight: bold;">Heading</h2> | |||
<p style="color: #464946; display: block; font-family: 'Trebuchet MS', 'Helvetica Neue', Arial, Helvetica, sans-serif; font-size: 12px;">This is paragraph text</p> | |||
</html> | |||
[[Category:Design]] | [[Category:Design]] | ||
[[Category:Marketing]] | [[Category:Marketing]] |
Revision as of 11:06, 12 May 2015
A long time ago, I created a script that would parse a CSS file and generate the unwritten style guide that's embodied in it. Until I resurrect that script, you might need to refer to other helpful resources on creating a Style Guide
Really Simple Example[edit]
This is a navline, or header
Heading
This is paragraph text