Mercurial > hg > vamp-docs
annotate code-docs/tabs.css @ 1:3c430ef1ed66 vamp-plugin-sdk-v2.3
Add code docs from SDK 2.3
author | Chris Cannam |
---|---|
date | Tue, 04 Oct 2011 14:56:07 +0100 |
parents | |
children | 27319718b1f8 |
rev | line source |
---|---|
Chris@1 | 1 .tabs, .tabs2, .tabs3 { |
Chris@1 | 2 background-image: url('tab_b.png'); |
Chris@1 | 3 width: 100%; |
Chris@1 | 4 z-index: 101; |
Chris@1 | 5 font-size: 13px; |
Chris@1 | 6 } |
Chris@1 | 7 |
Chris@1 | 8 .tabs2 { |
Chris@1 | 9 font-size: 10px; |
Chris@1 | 10 } |
Chris@1 | 11 .tabs3 { |
Chris@1 | 12 font-size: 9px; |
Chris@1 | 13 } |
Chris@1 | 14 |
Chris@1 | 15 .tablist { |
Chris@1 | 16 margin: 0; |
Chris@1 | 17 padding: 0; |
Chris@1 | 18 display: table; |
Chris@1 | 19 } |
Chris@1 | 20 |
Chris@1 | 21 .tablist li { |
Chris@1 | 22 float: left; |
Chris@1 | 23 display: table-cell; |
Chris@1 | 24 background-image: url('tab_b.png'); |
Chris@1 | 25 line-height: 36px; |
Chris@1 | 26 list-style: none; |
Chris@1 | 27 } |
Chris@1 | 28 |
Chris@1 | 29 .tablist a { |
Chris@1 | 30 display: block; |
Chris@1 | 31 padding: 0 20px; |
Chris@1 | 32 font-weight: bold; |
Chris@1 | 33 background-image:url('tab_s.png'); |
Chris@1 | 34 background-repeat:no-repeat; |
Chris@1 | 35 background-position:right; |
Chris@1 | 36 color: #283A5D; |
Chris@1 | 37 text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); |
Chris@1 | 38 text-decoration: none; |
Chris@1 | 39 outline: none; |
Chris@1 | 40 } |
Chris@1 | 41 |
Chris@1 | 42 .tabs3 .tablist a { |
Chris@1 | 43 padding: 0 10px; |
Chris@1 | 44 } |
Chris@1 | 45 |
Chris@1 | 46 .tablist a:hover { |
Chris@1 | 47 background-image: url('tab_h.png'); |
Chris@1 | 48 background-repeat:repeat-x; |
Chris@1 | 49 color: #fff; |
Chris@1 | 50 text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); |
Chris@1 | 51 text-decoration: none; |
Chris@1 | 52 } |
Chris@1 | 53 |
Chris@1 | 54 .tablist li.current a { |
Chris@1 | 55 background-image: url('tab_a.png'); |
Chris@1 | 56 background-repeat:repeat-x; |
Chris@1 | 57 color: #fff; |
Chris@1 | 58 text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); |
Chris@1 | 59 } |