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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
|
.group {
display: block;
padding: 1em;
width: 100%;
margin: auto auto;
font-family: "Franklin Gothic Medium", "Franklin Gothic", "ITC Franklin Gothic", Arial, sans-serif;
}
.group h1 {
font-weight: normal;
font-size: 1.8em;
margin-bottom: 1em;
font-family: Cambria, Georgia, serif;
}
.group.info {
padding: 0.4em;
margin: 0.5em;
font-size: 1em;
color: #000;
}
.group .info:first-letter {
font-size:1.3em;
}
.group h2 {
font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
border-bottom: 2px solid #000;
color: #fff;
background: #c0d0e0;
background-color: #c0d0e0;
text-shadow: 1px 1px 2px #000;
font-weight:normal;
background: linear-gradient(to top, #abc 10%, #89a 90%, #678 99% );
background: -webkit-linear-gradient(bottom, #abc 10%, #89a 90%, #678 99%);
background: -moz-linear-gradient(bottom, #abc 10%, #89a 90%, #678 99%);
font-size: 1.4em;
margin-top: 1em;
margin-bottom: 0;
padding:3px;
padding-left:20px;
}
a {
line-height: 2em;
margin-left: 1.3em;
color: black;
text-decoration: underline;
font-size: 1em;
}
li {
color: #555;
}
a:hover {
text-decoration: none;
}
.container {
border-left: 2px dotted #ddd;
margin-left: 8px;
}
.container.demo {
float:right;
}
body{
margin:0;
}
#menu {
position:fixed;
top:40px;
width:10.5%;
padding: 10px 0 1% 0.3%;
background: #c0d0e0;
background-color: #c0d0e0;
border-bottom-right-radius: 1.3em;
border-top-right-radius: 1.3em;
border-bottom: 2px solid #000;
border-right: 1px solid #000;
color: #fff;
text-shadow: 1px 1px 2px #000;
font-weight:bolder;
background:#678;
background-color:#678;
background: linear-gradient(to top, #abc 10%, #89a 90%, #678 99% );
background: -webkit-linear-gradient(bottom, #abc 10%, #89a 90%, #678 99%);
background: -moz-linear-gradient(bottom, #abc 10%, #89a 90%, #678 99%);
}
#menu #menuHeader{
margin:0 0 1.5% 0;
background:#333333;
width:97%;
height:31px;
padding-left:10px;
margin-left:-10px;
border-radius: 0 10px 10px 0
}
#menuHeader h3{
float:left;
font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
font-size:1.2em;
background-color:#333;
color:#fff;
width:80%;
margin-top:4px;
padding:0;
}
#menuArrow {
float:left;
padding:0;
margin-top:8px;
width:15%;
}
#menu a {
display:block;color:#fff;
font-family: Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
text-decoration: none;
margin-left:1%;
font-size:100%
}
#menu a:hover {
font-weight:bolder;
text-decoration:underline;
}
#menuItems {
float:left;
width:80%;
}
#sidebar {
float:left;
min-width:11%;
min-height:100px;
overflow:auto;
}
#content {
float:left;
width:75%;
}
.arrow{
-webkit-transition-duration: 0.9s;
-moz-transition-duration: 0.9s;
-o-transition-duration: 0.9s;
transition-duration: 0.9s;
-webkit-transition-property: -webkit-transform;
-moz-transition-property: -moz-transform;
-o-transition-property: -o-transform;
transition-property: transform;
overflow:auto;
}
.rotateArrowCW {
-webkit-transform:rotate(180deg);
-moz-transform:rotate(180deg);
-o-transform:rotate(180deg);
}
|