• Home
  • History
  • Annotate
  • only in this directory
NameDateSize

..05-Apr-20136

icons/H05-Apr-20135

readme.txtH A D05-Apr-2013921

screen.cssH A D05-Apr-20131.9 KiB

readme.txt

1Buttons
2
3* Gives you great looking CSS buttons, for both <a> and <button>.
4* Demo: particletree.com/features/rediscovering-the-button-element
5
6
7Credits
8----------------------------------------------------------------
9
10* Created by Kevin Hale [particletree.com]
11* Adapted for Blueprint by Olav Bjorkoy [bjorkoy.com]
12
13
14Usage
15----------------------------------------------------------------
16
171) Add this plugin to lib/settings.yml.
18   See compress.rb for instructions.
19
202) Use the following HTML code to place the buttons on your site:
21
22	<button type="submit" class="button positive">
23	  <img src="css/blueprint/plugins/buttons/icons/tick.png" alt=""/> Save
24	</button>
25
26	<a class="button" href="/password/reset/">
27	  <img src="css/blueprint/plugins/buttons/icons/key.png" alt=""/> Change Password
28	</a>
29
30	<a href="#" class="button negative">
31	  <img src="css/blueprint/plugins/buttons/icons/cross.png" alt=""/> Cancel
32	</a>
33