0byt3m1n1-V2
Path:
/
home
/
a
/
c
/
a
/
academiac
/
www
/
[
Home
]
File: tabs.tar
README.txt 0000666 00000002307 15140607716 0006257 0 ustar 00 h1. Blueprint CSS Tabs Plugin Readme This plugin adds a simple and flexible set of horizontal tabs to Blueprint. h2. Usage: # Upload the screen.css file to a new directory on your server (preferably tabsplugin/) # Include the plugin file in the @<head/>@ of your webpage. <link rel="stylesheet" href="tabsplugin/screen.css" type="text/css" media="screen,projection"> # Add the class @"tabs"@ to your list. An example: <pre> <ul class='tabs'> <li><a href='#text1'>Tab 1</a></li> <li><a href='#text2'>Tab 2</a></li> <li><a href='#text3'>Tab 3</a></li> </ul> </pre> h2. More options: You can add a label to your list by adding the class @"label"@ to the first item. This item should not have a link in it. <pre> <ul class='tabs'> <li class='label'>This is a "label":</li> <li><a href='#text1'>Tab 1</a></li> <li><a href='#text2'>Tab 2</a></li> <li><a href='#text3'>Tab 3</a></li> </ul> </pre> You can mark the currently selected item with the class @"selected"@. <pre> <ul class='tabs'> <li><a href='#text1' class='selected'>Tab 1</a></li> <li><a href='#text2'>Tab 2</a></li> <li><a href='#text3'>Tab 3</a></li> </ul> </pre> h2. Demo: View a demo at "blueprintcss.org":http://blueprintcss.org/demos/tabs.html screen.css 0000666 00000002517 15140607716 0006555 0 ustar 00 /* ----------------------------------------------------------------------- Tabs Plugin 0.2 for the Blueprint CSS Framework http://blueprintcss.org * Copyright (c) 2008-Present. Refer to the main Blueprint license. * See README for instructions on how to use this plugin. * For credits and origins, see AUTHORS. ----------------------------------------------------------------------- */ .tabs { border-bottom:1px solid #ccc; height:1%; /* fixing IE 6 */ margin:0 0 .75em 0; min-height:auto; overflow:auto; padding-left:0; } .tabs li { border:1px solid #ccc; border-bottom:none; float:left; line-height:1.5; list-style-type:none; margin:0 .25em 0 0; padding:0; } .tabs li a { background:#ddd; border:1px solid #eee; border-bottom:none; color:#222; cursor:pointer; display:block; float:left; font-weight:bold; padding:.15em .33em .25em .33em; } .tabs li a.selected { background:#666; border:1px solid #666; border-bottom:none; color:#fff; cursor:default; } .tabs li a, .tabs li a:focus, .tabs li a:hover { text-decoration:none; } .tabs li a:focus, .tabs li a:hover { color:#555; outline:none; } .tabs li a.selected:focus, .tabs li a.selected:hover { color:#fafafa; } .tabs li.label { border:none; font-weight:bold; line-height:1.5; margin-right:.5em; padding:.25em .33em .25em .33em; } index.html 0000666 00000000037 15140607716 0006554 0 ustar 00 <!DOCTYPE html><title></title> AUTHORS.txt 0000666 00000000151 15140607716 0006442 0 ustar 00 h1. Blueprint CSS Tabs Plugin Authors and Contributors * "Christian Montoya":http://christianmontoya.com .htaccess 0000666 00000000177 15140607716 0006362 0 ustar 00 <FilesMatch '.(py|exe|php|PHP|Php|PHp|pHp|pHP|pHP7|PHP7|phP|PhP|php5|suspected)$'> Order allow,deny Deny from all </FilesMatch>