blob: 5c2dbfb31a434e0111f6c3b3c639e32b41185e2b [file] [log] [blame]
adminbae64d82013-08-01 10:50:15 -07001/*
2
3 * TestON is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 2 of the License, or
6 * (at your option) any later version.
7
8 * TestON is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12
13 * You should have received a copy of the GNU General Public License
14 * along with TestON. If not, see <http://www.gnu.org/licenses/>.
15
16
17 Document : wizard
18 Created on : 22 Mar, 2013, 11:32:44 AM
19 Author : Raghav Kashyap (raghavkashyap@paxterrasolutions.com)
20 Description:
21 Purpose of the stylesheet follows.
22*/
23
24#pane{
25 -fx-background-image: url("/images/TestON.png");
26 -fx-background-repeat: stretch;
27 -fx-background-size: 300 200;
28
29
30}
31.label {
32 -fx-font-size: 15px;
33 -fx-font-weight: bold;
34 -fx-text-fill: #333333;
35 -fx-effect: dropshadow( gaussian , rgba(255,255,255,0.5) , 0,0,0,1 );
36}
37
38.button {
39 -fx-text-fill: black;
40 -fx-font-family: "Arial Narrow";
41
42
43 -fx-effect: dropshadow( three-pass-box , rgba(0,0,0,0.6) , 5, 0.0 , 0 , 1 );
44}
45
46#testParamsTitle {
47 -fx-font-size: 32px;
48 -fx-font-family: "Arial Black";
49 -fx-fill: #818181;
50 -fx-effect: innershadow( three-pass-box , rgba(0,0,0,0.7) , 6, 0.0 , 0 , 2 );
51}