annotate C++/api/html/tabs.css @ 610:01986636257a
Second check-in of Alex Brandmeyer's C++ implementation of CARFAC. Addressed style issues and completed implementation of remaining functions. Still needs proper testing of the output stages against the MATLAB version, and runtime functions need improvements in efficiency.
author |
alexbrandmeyer |
date |
Thu, 16 May 2013 17:33:23 +0000 |
parents |
76c6b3fd0a05 |
children |
|
rev |
line source |
flatmax@592
|
1 .tabs, .tabs2, .tabs3 {
|
flatmax@592
|
2 background-image: url('tab_b.png');
|
flatmax@592
|
3 width: 100%;
|
flatmax@592
|
4 z-index: 101;
|
flatmax@592
|
5 font-size: 13px;
|
flatmax@592
|
6 }
|
flatmax@592
|
7
|
flatmax@592
|
8 .tabs2 {
|
flatmax@592
|
9 font-size: 10px;
|
flatmax@592
|
10 }
|
flatmax@592
|
11 .tabs3 {
|
flatmax@592
|
12 font-size: 9px;
|
flatmax@592
|
13 }
|
flatmax@592
|
14
|
flatmax@592
|
15 .tablist {
|
flatmax@592
|
16 margin: 0;
|
flatmax@592
|
17 padding: 0;
|
flatmax@592
|
18 display: table;
|
flatmax@592
|
19 }
|
flatmax@592
|
20
|
flatmax@592
|
21 .tablist li {
|
flatmax@592
|
22 float: left;
|
flatmax@592
|
23 display: table-cell;
|
flatmax@592
|
24 background-image: url('tab_b.png');
|
flatmax@592
|
25 line-height: 36px;
|
flatmax@592
|
26 list-style: none;
|
flatmax@592
|
27 }
|
flatmax@592
|
28
|
flatmax@592
|
29 .tablist a {
|
flatmax@592
|
30 display: block;
|
flatmax@592
|
31 padding: 0 20px;
|
flatmax@592
|
32 font-weight: bold;
|
flatmax@592
|
33 background-image:url('tab_s.png');
|
flatmax@592
|
34 background-repeat:no-repeat;
|
flatmax@592
|
35 background-position:right;
|
flatmax@592
|
36 color: #283A5D;
|
flatmax@592
|
37 text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
|
flatmax@592
|
38 text-decoration: none;
|
flatmax@592
|
39 outline: none;
|
flatmax@592
|
40 }
|
flatmax@592
|
41
|
flatmax@592
|
42 .tabs3 .tablist a {
|
flatmax@592
|
43 padding: 0 10px;
|
flatmax@592
|
44 }
|
flatmax@592
|
45
|
flatmax@592
|
46 .tablist a:hover {
|
flatmax@592
|
47 background-image: url('tab_h.png');
|
flatmax@592
|
48 background-repeat:repeat-x;
|
flatmax@592
|
49 color: #fff;
|
flatmax@592
|
50 text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0);
|
flatmax@592
|
51 text-decoration: none;
|
flatmax@592
|
52 }
|
flatmax@592
|
53
|
flatmax@592
|
54 .tablist li.current a {
|
flatmax@592
|
55 background-image: url('tab_a.png');
|
flatmax@592
|
56 background-repeat:repeat-x;
|
flatmax@592
|
57 color: #fff;
|
flatmax@592
|
58 text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0);
|
flatmax@592
|
59 }
|