forked from mikedijkstra/Pattern-Primer-Ruby
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from mageller/master
Pull in blockquote and button page changes
- Loading branch information
Showing
3 changed files
with
34 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
<div class="preview"> | ||
<blockquote> | ||
<p>“Callout qoute block about something <strong>very interesting</strong>. Keep reading, it get better until it ends.</p> | ||
<p class="author">Author’s Name</p> | ||
<p>“Callout qoute block about something <strong>very interesting</strong>. Keep reading, it get better until it ends.”</p> | ||
<p class="author">—Author’s Name, MMORPG.com</p> | ||
</blockquote> | ||
</div> | ||
|
||
<div class="code"> | ||
<textarea wrap='off'> | ||
<blockquote> | ||
<p>“Callout qoute block about something <strong>very interesting</strong>. Keep reading, it get better until it ends.</p> | ||
<p class="author">Author’s Name</p> | ||
<p>“Callout qoute block about something <strong>very interesting</strong>. Keep reading, it get better until it ends.”</p> | ||
<p class="author">—Author’s Name, MMORPG.com</p> | ||
</blockquote> | ||
</textarea> | ||
</div> |
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 |
---|---|---|
@@ -1,11 +1,41 @@ | ||
<div class="preview"> | ||
<h3>Link Buttons</h3> | ||
<a href="#" class="button-primary">Primary Button Text</a> | ||
<a href="#" class="button-secondary">Secondary Button Text</a> | ||
<h3>Form Buttons</h3> | ||
<form> | ||
<fieldset> | ||
<p><input type="button" value="Input type button"></p> | ||
<p><input type="reset" value="Input type reset"></p> | ||
<p><input type="submit" value="Input type submit"></p> | ||
<p><input type="submit" value="Input type submit disabled" disabled></p> | ||
<p><input type="button" value="Input type button disabled" disabled></p> | ||
<p><button type="button">Button type button</button></p> | ||
<p><button type="reset">Button type reset</button></p> | ||
<p><button type="submit">Button type submit</button></p> | ||
<p><button type="button" disabled>Button type button disabled</button></p> | ||
<p><button type="submit" disabled>Button type submit disabled</button></p> | ||
<p><button>Button</button></p> | ||
</fieldset> | ||
</form> | ||
</div> | ||
|
||
<div class="code"> | ||
<textarea wrap='off'> | ||
<a href="#" class="button-primary">Primary Button Text</a> | ||
<a href="#" class="button-secondary">Secondary Button Text</a> | ||
<fieldset> | ||
<p><input type="button" value="Input type button"></p> | ||
<p><input type="reset" value="Input type reset"></p> | ||
<p><input type="submit" value="Input type submit"></p> | ||
<p><input type="submit" value="Input type submit disabled" disabled></p> | ||
<p><input type="button" value="Input type button disabled" disabled></p> | ||
<p><button type="button">Button type button</button></p> | ||
<p><button type="reset">Button type reset</button></p> | ||
<p><button type="submit">Button type submit</button></p> | ||
<p><button type="button" disabled>Button type button disabled</button></p> | ||
<p><button type="submit" disabled>Button type submit disabled</button></p> | ||
<p><button>Button</button></p> | ||
</fieldset> | ||
</textarea> | ||
</div> |
This file was deleted.
Oops, something went wrong.