annotate popoto_dev/src/css/popotojs.css @ 12:d67c5ad47709

implementation with dropdown popup, unfinished
author alistair
date Fri, 02 Oct 2015 01:08:46 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
12
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
1 /*
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
2 * Copyright (C) 2014 Frederic Ciminera
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
3 *
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
4 * Popoto.js is free software: you can redistribute it and/or modify
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
5 * it under the terms of the GNU General Public License as published by
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
6 * the Free Software Foundation, either version 3 of the License, or
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
7 * (at your option) any later version.
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
8 *
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
9 * Popoto.js is distributed in the hope that it will be useful,
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
12 * GNU General Public License for more details.
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
13 *
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
14 * You should have received a copy of the GNU General Public License
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
16 *
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
17 * contact@popotojs.com
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
18 */
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
19
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
20 /***********************************************************/
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
21 /* Asap font*/
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
22 @font-face {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
23 font-family: "Asap";
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
24 src: url("font/asap/Asap-Regular.otf");
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
25 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
26
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
27 @font-face {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
28 font-family: "Asap";
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
29 src: url("font/asap/Asap-Bold.otf");
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
30 font-weight: bold;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
31 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
32
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
33 @font-face {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
34 font-family: "Asap";
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
35 src: url("font/asap/Asap-Italic.otf");
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
36 font-style: italic;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
37 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
38
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
39 @font-face {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
40 font-family: "Asap";
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
41 src: url("font/asap/Asap-BoldItalic.otf");
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
42 font-weight: bold;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
43 font-style: italic;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
44 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
45
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
46 /**********************************************************************************/
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
47 .ppt-body {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
48 background-color: #2e3138;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
49 margin: 22px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
50 font-family: Asap, sans-serif;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
51 color: #ffffff;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
52 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
53
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
54 /* Main HTML container element containing the taxonomy filter and graph */
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
55 .ppt-container-graph {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
56 background-color: #22252a;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
57 height: 750px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
58 padding: 0 0 0;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
59 border-bottom-right-radius: 5px 5px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
60 border-bottom-left-radius: 5px 5px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
61 overflow: hidden;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
62 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
63
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
64 /**************************/
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
65 /* Taxonomy Filter*/
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
66 .ppt-taxo-nav {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
67 overflow: auto;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
68 padding: 18px 35px 18px 18px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
69 background-color: #444951;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
70 height: 100%;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
71 float: left;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
72 white-space: nowrap;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
73 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
74
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
75 .ppt-taxo-nav.disabled {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
76 display: none;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
77 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
78
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
79 .ppt-taxo-nav ul {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
80 list-style-type: none;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
81 display: block;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
82 vertical-align: top; /* | top | bottom */
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
83 padding: 0 0 0 10px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
84 margin: 0;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
85 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
86
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
87 .ppt-taxo-nav li {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
88 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
89
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
90 .ppt-taxo-nav li img {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
91 vertical-align: middle; /* | top | bottom */
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
92 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
93
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
94 /**************************/
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
95 /* Div containing SVG element*/
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
96 .ppt-div-graph {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
97 position: relative;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
98 background-color: #22252a;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
99 height: 100%;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
100 padding: 0;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
101 border-bottom-right-radius: 5px 5px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
102 overflow: hidden;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
103 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
104
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
105 .ppt-div-graph:-webkit-full-screen {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
106 width: 100%;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
107 height: 100%;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
108 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
109
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
110 .ppt-div-graph:fullscreen {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
111 width: 100%;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
112 height: 100%;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
113 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
114
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
115 /**********************************************************************************/
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
116
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
117 .ppt-header {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
118 padding-left: 16px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
119 padding-right: 16px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
120 background-color: #525863;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
121 border-radius: 5px 5px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
122 height: 70px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
123 min-width: 560px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
124 line-height: 70px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
125 font-weight: bold;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
126 font-size: 22px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
127 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
128
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
129 .ppt-section-header {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
130 min-width: 560px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
131 padding-left: 18px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
132 padding-right: 18px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
133 background-color: #525863;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
134 height: 68px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
135 line-height: 67px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
136 margin-top: 22px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
137 border-top-right-radius: 5px 5px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
138 border-top-left-radius: 5px 5px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
139 font-weight: bold;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
140 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
141
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
142 .ppt-section-tips {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
143 min-width: 560px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
144 padding-left: 18px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
145 padding-right: 18px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
146 background-color: #525863;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
147 margin-top: 22px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
148 border-top-left-radius: 5px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
149 border-top-right-radius: 5px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
150 font-size: 14px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
151 line-height: 35px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
152 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
153
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
154 .ppt-section-tips a {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
155 color: #8bb71a;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
156 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
157
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
158 .ppt-section-tips p {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
159 margin-bottom: 0;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
160 margin-top: 0;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
161 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
162
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
163 .ppt-toolbar {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
164 padding: 12px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
165 position: absolute;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
166 right: 0;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
167 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
168
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
169 .ppt-header-span {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
170 color: #8bb71a;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
171 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
172
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
173 .ppt-section-main {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
174 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
175
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
176 .ppt-container-query {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
177 text-align: center;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
178 margin-top: 22px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
179 min-width: 560px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
180 background-color: #22252a;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
181 border-radius: 5px 5px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
182 padding: 18px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
183 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
184
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
185 .ppt-container-cypher {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
186 text-align: center;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
187 margin-top: 22px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
188 min-width: 560px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
189 background-color: #22252a;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
190 border-radius: 5px 5px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
191 padding: 18px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
192 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
193
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
194 .ppt-container-results {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
195 width: 100%;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
196 float: left;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
197 min-width: 300px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
198 background-color: #22252a;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
199 padding: 0;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
200 border-bottom-right-radius: 5px 5px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
201 border-bottom-left-radius: 5px 5px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
202 overflow: auto;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
203 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
204
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
205 .ppt-footer {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
206 padding-left: 16px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
207 padding-right: 16px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
208 background-color: #525863;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
209 border-radius: 5px 5px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
210
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
211 height: 70px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
212 min-width: 560px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
213 line-height: 70px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
214
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
215 font-weight: bold;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
216 font-size: 22px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
217 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
218
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
219 /*****************************/
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
220
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
221 .ppt-menu {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
222 width: 32px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
223 height: 32px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
224 display: inline-block;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
225 vertical-align: middle;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
226 cursor: pointer;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
227 margin-left: 12px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
228 background: url("image/tools.png") no-repeat 0 0;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
229 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
230
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
231 .ppt-menu.taxonomy {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
232 background-position: 0 0;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
233 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
234
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
235 .ppt-menu.reset {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
236 background-position: -288px 0;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
237 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
238
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
239 .ppt-menu.fullscreen {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
240 background-position: -256px 0;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
241 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
242
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
243 .ppt-menu.center {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
244 background-position: -96px 0;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
245 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
246
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
247 .ppt-menu.taxonomy:hover {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
248 background-position: 0 -32px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
249 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
250
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
251 .ppt-menu.reset:hover {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
252 background-position: -288px -32px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
253 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
254
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
255 .ppt-menu.fullscreen:hover {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
256 background-position: -256px -32px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
257 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
258
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
259 .ppt-menu.center:hover {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
260 background-position: -96px -32px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
261 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
262
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
263 .ppt-count {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
264 cursor: pointer;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
265 color: #2aa1d3;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
266 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
267
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
268 .ppt-label {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
269 cursor: pointer;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
270 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
271
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
272 .ppt-label:hover {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
273 color: #f0b017;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
274 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
275
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
276 .ppt-result {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
277 background-color: #444951;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
278 padding: 9px 18px;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
279 margin: 1px 0 0;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
280 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
281
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
282 .ppt-result:hover {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
283 background-color: #525863;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
284 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
285
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
286 .ppt-result-table {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
287 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
288
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
289 .ppt-result-table th,td {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
290 text-align: left;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
291 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
292 /****************** Query span Styles *************************/
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
293
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
294 /* P elements containing query constraints */
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
295 .ppt-query-constraint-elements {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
296 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
297
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
298 /* P elements containing query inactive constraints */
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
299 .ppt-query-elements {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
300 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
301
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
302 .ppt-span {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
303 color: #ffffff;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
304 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
305
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
306 .ppt-span-link {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
307 color: #ffffff;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
308 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
309
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
310 .ppt-span-root {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
311 color: #2aa1d3;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
312 cursor: pointer;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
313 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
314
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
315 .ppt-span-choose {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
316 color: #8bb71a;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
317 cursor: pointer;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
318 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
319
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
320 .ppt-span-group {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
321 color: #8e8e8e;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
322 cursor: pointer;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
323 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
324
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
325 .ppt-span-value {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
326 color: #f0b017;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
327 cursor: pointer;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
328 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
329
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
330 .ppt-span-link.hover {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
331 color: #ee4e10;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
332 font-weight: bold;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
333 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
334
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
335 .ppt-span-root.hover {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
336 color: #ee4e10;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
337 font-weight: bold;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
338 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
339
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
340 .ppt-span-choose.hover {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
341 color: #ee4e10;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
342 font-weight: bold;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
343 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
344
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
345 .ppt-span-group.hover {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
346 color: #ee4e10;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
347 font-weight: bold;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
348 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
349
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
350 .ppt-span-value.hover {
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
351 color: #ee4e10;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
352 font-weight: bold;
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
353 }
d67c5ad47709 implementation with dropdown popup, unfinished
alistair
parents:
diff changeset
354