1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
/**
* "Yet Another Multicolumn Layout" - YAML CSS Framework
*
* (en) Horizontal list navigation "hlist"
* (de) Horizontale Navigationsliste "hlist"
*
* @copyright Copyright 2005-2012, Dirk Jesse
* @license CC-BY 2.0 (http://creativecommons.org/licenses/by/2.0/),
* YAML-CDL (http://www.yaml.de/license.html)
* @link http://www.yaml.de
* @package yaml
* @version v4.0
* @revision $Revision: 692 $
* @lastmodified $Date: 2012-01-25 11:37:31 +0100 (Mi, 25 Jan 2012) $
*/
@media all {
.ym-hlist {
/* (en) containing floats in IE */
/* (de) Einfassen der Floats im IE */
width:100%;
overflow:hidden;
/* (en|de) Bugfix:IE - collapsing horizontal margins */
position:relative;
line-height:1em;
background: #090b21;
}
.ym-hlist ul {
margin:0;
padding: 0.5em 1.5em;
/* (en|de) Bugfix:IE - Doubled Float Margin Bug */
display:inline;
float:left; /* LTR */
}
.ym-hlist ul li {
/* (en|de) Bugfix:IE - Doubled Float Margin Bug */
display:inline;
float:left; /* LTR */
font-size:1.0em;
line-height:1em;
list-style-type:none;
margin: 0 .25em 0 0;
padding:0;
}
.ym-hlist ul li a,
.ym-hlist ul li strong {
background:transparent;
color:#aaa;
display:block;
font-size:1em;
line-height: 2em;
padding: 0 0.5em;
font-weight:normal;
text-decoration:none;
text-shadow: 0 1px 1px rgba(0,0,0,.5);
width:auto;
}
.ym-hlist ul li a:focus,
.ym-hlist ul li a:hover,
.ym-hlist ul li a:active {
color: #b3b5cc;
background:#666;
background: rgba(255,255,255,.25);
-webkit-border-radius: 0.2em;
-moz-border-radius: 0.2em;
border-radius: 0.2em;
text-decoration:none;
outline: 0 none;
}
.ym-hlist ul li.active {
background:#666;
background: rgba(255,255,255,.3);
-webkit-border-radius: 0.2em;
-moz-border-radius: 0.2em;
border-radius: 0.2em;
color: #fff;
}
.ym-hlist ul li.active strong,
.ym-hlist ul li.active a:focus,
.ym-hlist ul li.active a:hover,
.ym-hlist ul li.active a:active {
background:transparent;
color:#fff;
text-decoration:none;
}
/* search form -------------------------------------- */
.ym-searchform {
float:right;
display: inline;
line-height: 2em;
padding: 0.5em 1.5em;
}
.ym-searchform .ym-searchfield {
background: #fff;
line-height: 1em;
padding: 0.25em;
width: 12em;
border: solid 1px #888;
border: solid 1px rgba(255,255,255,.1);
outline: none;
-webkit-box-shadow: inset 0 1px 3px rgba(0,0,0,.2);
-moz-box-shadow: inset 0 1px 3px rgba(0,0,0,.2);
box-shadow: inset 0 1px 3px rgba(0,0,0,.2);
}
.ym-searchform .ym-searchbutton {
color: #fff;
cursor: pointer;
display: inline-block;
font-size: 1em;
line-height: 1.3571em;
padding: 0.25em;
border: solid 1px transparent;
text-shadow: 0 1px 1px rgba(0,0,0,.5);
-webkit-border-radius: .2em;
-moz-border-radius: .2em;
border-radius: .2em;
background: #5f5f5f;
background: rgba(255,255,255,.2);
}
}
|