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
170
171
172
173
174
|
li.size1 {
width: 13em;
height:7em;
}
li.quadsize {
width:270px;
height:300px;
}
li.graphsize {
width:1050px;
height:350px;
}
body {
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; color:black;
font-size:22px;
padding:0;
margin:0;
background-color: rgba(170, 180, 185, 1);
color: #333;
}
h1 {
text-align:center;
font-variant: small-caps;
color:#eee;
}
div.content {
text-align:center;
text-transform: capitalize;
}
div.container {
box-sizing: border-box;
font-size: 14px;
line-height: 20px;
margin-left: auto;
margin-right: auto;
margin-bottom:2em;
max-width: 1170px;
padding-left: 15px;
padding-right: 15px;
border: 2px solid #DDD;
background: #FFF;
}
div.container:after {
clear: both;
}
div.container:before, .container:after {
content: " ";
display: table;
}
main {
display:block;
}
h2.dispstreamheader {
font-variant: small-caps;
}
ul.controls {
box-sizing: border-box;
font-size: 14px;
line-height: 20px;
margin-bottom: 10px;
margin-left: -5px;
margin-right: -15px;
margin-top: 0px;
padding-bottom: 0px;
padding-left: 0px;
padding-right: 0px;
padding-top: 0px;
}
ul.controls:after {
clear: both;
}
ul.controls:before, ul.controls:after {
content: " ";
display: table;
}
li.dispvalue {
float:left;
background-color: #FFF;
border-bottom-color: #DDD;
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
border-bottom-style: solid;
border-bottom-width: 1px;
border-image-outset: 0 0 0 0;
border-image-repeat: stretch stretch;
border-image-slice: 100% 100% 100% 100%;
border-image-source: none;
border-image-width: 1 1 1 1;
border-left-color: #DDD;
border-left-style: solid;
border-left-width: 1px;
border-right-color: #DDD;
border-right-style: solid;
border-right-width: 1px;
border-top-color: #DDD;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
border-top-style: solid;
border-top-width: 1px;
box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
box-sizing: border-box;
font-size: 14px;
line-height: 20px;
list-style-image: none;
list-style-position: outside;
list-style-type: none;
margin-bottom: 20px;
margin-right: 11.7px;
min-height: 1px;
padding-left: 0px;
padding-right: 10px;
padding-bottom:50px;
position: relative;
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
}
div.dispvalueheader {
background-color: #F5F5F5;
border-bottom-style: solid;
border-bottom-width: 1px;
border-color: #DDD;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
box-sizing: border-box;
list-style-image: none;
list-style-position: outside;
list-style-type: none;
margin-right:-10px;
padding-bottom: 10px;
padding-left: 15px;
padding-right: 15px;
padding-top: 10px;
}
input.dispvalueheaderafter {
float:right;
display:inline;
margin-top:-35px;
}
div.dispvaluevalue {
margin-top:10px;
margin-left:10px;
width:100%;
height:100%;
}
.anchor:before {
content: "";
display: block;
position: relative;
width: 0px;
height: 5em;
margin-top: -5em;
}
*:before, *:after {
box-sizing: border-box;
}
|