-
Notifications
You must be signed in to change notification settings - Fork 24
/
main.css
134 lines (109 loc) · 3.71 KB
/
main.css
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
body {
padding:10px;
/*font: .875em/1.286 "Lucida Grande", "Lucida Sans Unicode", Lucida, Arial, Helvetica, sans-serif;*/
font:12px Verdana, Arial, 'Helvetica', sans-serif;
color: #222;
background:#FFFFF0;}
h1, h2, h4 {text-align:center; color:#000080;}
p {margin:10px; padding:5px;}
/*code {color:#000080; font-weight:bold; font-size:110%; /*fint-style:italic;*/}*/
pre {/*font-size:120%;*/ /*font-family: monospace;color:#000033; font-weight:bold;*/}
a:link {color:black;}
a:visited {color:black;}
#header { min-height:50px; position:relative; border:0px solid red; }
#header ul { text-align:center; margin-top:15px; margin-bottom:5px; background:#E8E8FF;}
#header ul li { display:inline-block; margin-left:10px; position:relative;}
#header ul li { cursor:pointer; }
#header ul li:hover { color:#ff0000;}
#header ul li a:hover {color:red;}
#container { min-width:800px; border:0px solid green;}
#menu { width:20%; float:left; margin:3px; border:0px solid blue; background:#E8E8FF; padding:1%}
#menu ul li { cursor:pointer; margin-bottom:1em;}
#menu ul li ul li:hover {color:#ff0000;}
#content { width:70%; float:left; min-height:20px; border:0px solid black; }
#footer { height:50px; text-align:center;color:#999999;font-size:70%;}
#leftpanel { float:left; margin:0.5em;}
#demopanel {background:#f0fff0; margin:10px;padding:10px;}
#codepanel {
background-color:#ffffe0;
margin-left:10px;
margin-right:15px;
padding-left:10px;
}
#mode {font-weight:bold;float:left; }
.codecontrol { cursor:pointer; margin-bottom:10px; color:#808080; font-size:85%;}
.codesource {
display:none; background:#ffffe0; position:absolute; z-index:100; padding:15px;
border-top:5px solid #cccccc; border-left:5px solid #cccccc;
border-bottom:4px solid #333333;border-right:4px solid #333333;
padding:10px;
}
.close_button {
color:#cc0000;
cursor:pointer;
font-weight:bold;
position:relative;
left:90%;
}
.data {font-weight:bold;color:#0000CC;}
.leftcolumn { float:left; width:49%; }
.rightcolumn {float:left; width:49%;}
.leftcolumn ul li {color:#000080; margin:15px;font-weight:bold;}
.leftcolumn ul li ul li {color:#333333; margin:5px;font-weight:normal;}
.rightcolumn ul li {color:#800000; margin:15px;font-weight:bold;}
.rightcolumn ul li ul li {color:#333333; margin:5px;font-weight:normal;}
a:hover {color:#ff0000;}
a:link {color:black;}
a:visited {color:black;}
.menu_selected {
background:#FFFFf0;
}
.php_code {
background-color:#F0F0ff;
margin:5px;
}
.option {
color:#0000ff;
/*font-weight:bold;*/
text-size:80%;
}
#apiDoc {
}
#apiDoc ul {
list-style-type:none;
}
.apiDocToggleBtn {
margin-right:10px;
}
.apiDetails {
display:none;
background:#ffffd8;
margin:10px;
padding: 10px;
border:1px solid black;
}
.toggleApiDetails {
background-image: url("img/demo-spindown-closed.gif");
background-repeat:no-repeat;
padding-left: 15px;
cursor:pointer;
}
.functionDoc {background-color:#E0FFFF; padding:0.5em;}
.templateDoc {background-color:#FFE0FF; padding:0.5em;}
.jsonDoc {background-color:#FFFFcc; padding:0.5em; }
.h5 {margin-bottom:1em; font-weight:bold;}
.h6 {margin-bottom:1em; font-weight:bold;text-align:center;margin-bottom:0.5em;}
.highlight {background-color:#FFFF00;}
.comment {color:green;font-size:85%;}
.color_blue{color:#0000CC !important; font-size:105%;}
.color_blue_bold{color:#0000CC !important; font-size:105%; font-weight:bold;}
.color_red{color:#cc0000 !important; font-size:105%;}
.color_green{color:#008800 !important; font-size:105%;}
.span_demo_result{
background-color:#ffffe0; border:1px solid gray; display:inline-block;
width:25em;height:1.5em;padding-left:1em; margin-left:3em;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
/* IE10+ CSS styles go here */
.hideFromIE {display:none;}
}