Skip to content

Commit f238b64

Browse files
committedOct 7, 2018
Update to latest GUI
1 parent 42ebd64 commit f238b64

12 files changed

+394
-0
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/dist/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
/*
2+
To change this license header, choose License Headers in Project Properties.
3+
To change this template file, choose Tools | Templates
4+
and open the template in the editor.
5+
*/
6+
/*
7+
Created on : Sep 30, 2018, 7:10:03 PM
8+
Author : Rohan
9+
*/
10+
11+
#forgot-pw{
12+
-fx-background-color: linear-gradient(#1193b8,#23c1ef,transparent);
13+
-fx-font-family: "Verdana";
14+
-fx-font-size: 15px;
15+
-fx-font-weight: bold;
16+
-fx-fill: linear-gradient(#003d89,#1e2e9a);
17+
}
18+
19+
#text{
20+
-fx-font-size: 30px;
21+
-fx-font-family: "Times New Roman";
22+
-fx-font-weight: bold;
23+
-fx-fill:#181818;
24+
-fx-effect: innershadow( three-pass-box , rgba(0,0,0,0.7) , 6, 0.0 , 0 , 2 );
25+
}
26+
27+
#passwd_changed_label{
28+
-fx-text-fill: #05a40a;
29+
-fx-font-weight: bold;
30+
-fx-effect: innershadow(three-pass-box , rgba(0,0,0,0.7) , 6, 0.0 , 0 , 2);
31+
}
32+
33+
.button{
34+
-fx-font-size: 18px;
35+
-fx-font-family: "Consolas";
36+
-fx-font-weight: bold;
37+
-fx-text-fill: black;
38+
-fx-effect: innershadow( three-pass-box , rgba(0,0,0,0.7) , 6, 0.0 , 0 , 2 );
39+
-fx-border-style:none;
40+
-fx-background-color:linear-gradient(#81f957,#fae349);
41+
-fx-opacity: 0.8;
42+
}
43+
44+
.button:hover{
45+
-fx-background-color:linear-gradient(#fae349,#81f957);
46+
-fx-opacity: 1.0;
47+
}
48+
49+
.text-field{
50+
-fx-opacity: 0.75;
51+
-fx-background-color: linear-gradient(#81f957,#fae349);
52+
-fx-effect: innershadow( three-pass-box , rgba(0,0,0,0.7) , 6, 0.0 , 0 , 2 );
53+
}
+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
/*
2+
To change this license header, choose License Headers in Project Properties.
3+
To change this template file, choose Tools | Templates
4+
and open the template in the editor.
5+
*/
6+
/*
7+
Created on : Oct 7, 2018, 12:39:24 AM
8+
Author : Rohan
9+
*/
10+
11+
.button{
12+
-fx-font-size: 18px;
13+
-fx-font-family: "Consolas";
14+
-fx-font-weight: bold;
15+
-fx-text-fill: #ffffff;
16+
-fx-background-color:linear-gradient(#0731c0,#076dc0);
17+
-fx-effect: innershadow( three-pass-box , rgba(0,0,0,0.7) , 6, 0.0 , 0 , 2 );
18+
-fx-background-radius: 50em;
19+
-fx-opacity: 0.9;
20+
}
21+
22+
.button:hover{
23+
-fx-background-color:linear-gradient(#076dc0,#0731c0);
24+
-fx-opacity: 1.0;
25+
}
26+
27+
#text{
28+
-fx-font-size: 25px;
29+
-fx-font-weight: bold;
30+
-fx-fill:#181818;
31+
-fx-effect: innershadow( three-pass-box , rgba(0,0,0,0.7) , 6, 0.0 , 0 , 2 );
32+
}
33+
34+
#forgot-pw{
35+
-fx-font-size: 15px;
36+
-fx-font-weight: bold;
37+
-fx-fill: linear-gradient(#003d89,#1e2e9a);
38+
}
39+
40+
.text-field{
41+
-fx-effect: innershadow(gaussian, rgba(0,0,0,0.8),5,0,0,2);
42+
-fx-font-weight: bold;
43+
-fx-font-size: 15px;
44+
}
1.09 KB
Binary file not shown.
5.83 KB
Binary file not shown.

‎build/classes/window/java/Sign_Up.css

+127
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,127 @@
1+
/*
2+
To change this license header, choose License Headers in Project Properties.
3+
To change this template file, choose Tools | Templates
4+
and open the template in the editor.
5+
*/
6+
/*
7+
Created on : Sep 30, 2018, 9:52:49 PM
8+
Author : Rohan
9+
*/
10+
11+
#sign-up{
12+
-fx-background-color: linear-gradient(#1193b8,#23c1ef,transparent);
13+
-fx-font-family: "Verdana";
14+
-fx-font-size: 15px;
15+
-fx-font-weight: bold;
16+
/*-fx-fill: linear-gradient(#003d89,#1e2e9a);*/
17+
}
18+
19+
#text{
20+
-fx-font-size: 30px;
21+
-fx-font-family: "Times New Roman";
22+
-fx-font-weight: bold;
23+
-fx-fill:#181818;
24+
-fx-effect: innershadow( three-pass-box , rgba(0,0,0,0.7) , 6, 0.0 , 0 , 2 );
25+
}
26+
27+
#register{
28+
-fx-text-fill: #05a40a;
29+
-fx-font-weight: bold;
30+
-fx-effect: innershadow(three-pass-box , rgba(0,0,0,0.7) , 6, 0.0 , 0 , 2);
31+
}
32+
33+
.my-label_bg{
34+
-fx-fill: azure;
35+
-fx-stroke: transparent;
36+
37+
}
38+
.label {
39+
-fx-text-fill: linear-gradient(#003d89,#1e2e9a);
40+
-fx-effect: innershadow( three-pass-box , rgba(0,0,0,0.7) , 6, 0.0 , 0 , 2 );
41+
}
42+
43+
.button{
44+
-fx-font-size: 18px;
45+
-fx-font-family: "Consolas";
46+
-fx-font-weight: bold;
47+
-fx-text-fill: black;
48+
-fx-effect: innershadow( three-pass-box , rgba(0,0,0,0.7) , 6, 0.0 , 0 , 2 );
49+
-fx-border-style:none;
50+
-fx-background-color:linear-gradient(#81f957,#fae349);
51+
-fx-opacity: 0.8;
52+
}
53+
54+
.button:hover{
55+
-fx-background-color:linear-gradient(#fae349,#81f957);
56+
-fx-opacity: 1.0;
57+
}
58+
59+
60+
.scroll-bar .increment-button{
61+
-fx-padding: 5px;
62+
-fx-background-color:linear-gradient(#019d93,#00dbcd);
63+
}
64+
65+
.scroll-bar .decrement-button{
66+
-fx-padding: 5px;
67+
-fx-background-color:linear-gradient(#00dbcd,#019d93);
68+
}
69+
70+
.scroll-bar{
71+
/*-fx-padding: 5px;*/
72+
-fx-background-color: #47f3e2;
73+
-fx-effect: dropshadow( three-pass-box , rgba(0,0,0,0.6) , 8, 0.0 , 0 , 0 );
74+
}
75+
76+
.scroll-bar .thumb{
77+
-fx-background-color:linear-gradient(#065acf,#05a1d8);
78+
}
79+
80+
.scroll-bar .thumb:hover{
81+
-fx-background-color:linear-gradient(#05a1d8,#065acf);
82+
}
83+
84+
.date-picker .text-field{
85+
-fx-opacity: 0.75;
86+
-fx-background-color: linear-gradient(#81f957,#fae349);
87+
-fx-effect: innershadow(gaussian, rgba(0,0,0,0.8),5,0,0,2);
88+
-fx-text-fill: #000000;
89+
}
90+
91+
.text-field{
92+
-fx-opacity: 0.75;
93+
-fx-background-color: linear-gradient(#81f957,#fae349);
94+
-fx-effect: innershadow(gaussian, rgba(0,0,0,0.8),5,0,0,2);
95+
}
96+
97+
.combo-box{
98+
-fx-background-color: linear-gradient(#1ff608,#efd212);
99+
-fx-opacity: 0.7;
100+
}
101+
102+
.combo-box:hover{
103+
-fx-background-color: linear-gradient(#efd212,#1ff608);
104+
-fx-opacity: 0.7;
105+
}
106+
107+
.combo-box .list-cell
108+
{
109+
-fx-opacity: 1.0;
110+
-fx-background-color: linear-gradient(#81f957,#fae349);
111+
-fx-text-fill: #000000;
112+
-fx-padding: 3 0 2 7;
113+
-fx-cell-size: 1.66667em;
114+
-fx-effect: innershadow( three-pass-box , rgba(0,0,0,0.7) , 6, 0.0 , 0 , 2 );
115+
}
116+
117+
.combo-box-popup .list-view .list-cell:hover
118+
{
119+
-fx-background-color: #00dbcd;
120+
-fx-text-fill: white;
121+
}
122+
123+
#i{
124+
-fx-font-weight: bold;
125+
-fx-fill: red;
126+
127+
}

‎build/classes/window/java/User.class

2.44 KB
Binary file not shown.

‎build/classes/window/java/Window.css

+169
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,169 @@
1+
/*
2+
To change this license header, choose License Headers in Project Properties.
3+
To change this template file, choose Tools | Templates
4+
and open the template in the editor.
5+
*/
6+
/*
7+
Created on : Sep 25, 2018, 7:35:52 PM
8+
Author : Rohan
9+
*/
10+
11+
#page{
12+
-fx-background-image: url("plane.jpg");
13+
-fx-background-size: stretch;
14+
-fx-font-size: 20px;
15+
-fx-font-family: "Calibri";
16+
-fx-font-weight: bold;
17+
-fx-fill:#181818;
18+
19+
}
20+
21+
#welcome-label{
22+
-fx-font-size: 50px;
23+
-fx-font-family: "Arial Black";
24+
-fx-text-fill: linear-gradient(#1e9086,#1e2e9a);
25+
-fx-effect: innershadow( three-pass-box , rgba(0,0,0,0.7) , 6, 0.0 , 0 , 2 );
26+
}
27+
28+
.radio-button .radio{
29+
-fx-background-color:linear-gradient(#1ff608,#efd212);
30+
-fx-effect: innershadow(gaussian, rgba(0,0,0,0.8),5,0,0,2);
31+
-fx-opacity: 0.7;
32+
}
33+
34+
.radio-button .radio:hover{
35+
-fx-background-color:linear-gradient(#efd212,#1ff608);
36+
-fx-opacity: 1.0;
37+
}
38+
39+
.button{
40+
-fx-font-size: 18px;
41+
-fx-font-family: "Consolas";
42+
-fx-font-weight: bold;
43+
-fx-text-fill: #ffffff;
44+
-fx-background-color:linear-gradient(#0731c0,#076dc0);
45+
-fx-effect: innershadow( three-pass-box , rgba(0,0,0,0.7) , 6, 0.0 , 0 , 2 );
46+
-fx-border-style:none;
47+
/*-fx-background-image: url("search-button-img.jpg");
48+
-fx-background-size: 435px;
49+
-fx-background-position: 50%;
50+
-fx-background-repeat: no-repeat;*/
51+
-fx-background-radius: 50em;
52+
-fx-opacity: 0.9;
53+
}
54+
55+
.button:hover{
56+
/*-fx-background-color:linear-gradient(#05a1d8,#065acf);*/
57+
-fx-background-color:linear-gradient(#076dc0,#0731c0);
58+
-fx-opacity: 1.0;
59+
}
60+
#text{
61+
-fx-font-size: 30px;
62+
-fx-font-family: "Times New Roman";
63+
-fx-font-weight: bold;
64+
-fx-fill:#181818;
65+
-fx-effect: innershadow( three-pass-box , rgba(0,0,0,0.7) , 6, 0.0 , 0 , 2 );
66+
}
67+
68+
.label{
69+
-fx-font-size: 18px;
70+
-fx-font-family: "Franklin Gothic Medium";
71+
-fx-text-fill: linear-gradient(#3c0c34,#3c06f1);
72+
-fx-font-weight: bold;
73+
-fx-effect: dropshadow( gaussian , rgba(255,255,255,0.5) , 0,0,0,1 );
74+
}
75+
76+
.combo-box{
77+
-fx-background-color: linear-gradient(#1ff608,#efd212);
78+
-fx-opacity: 0.7;
79+
}
80+
81+
.combo-box:hover{
82+
-fx-background-color: linear-gradient(#efd212,#1ff608);
83+
-fx-opacity: 0.7;
84+
}
85+
86+
.combo-box .list-cell
87+
{
88+
-fx-opacity: 1.0;
89+
-fx-background-color: linear-gradient(#81f957,#fae349);
90+
-fx-text-fill: #000000;
91+
-fx-padding: 3 0 2 7;
92+
-fx-cell-size: 1.66667em;
93+
-fx-effect: innershadow( three-pass-box , rgba(0,0,0,0.7) , 6, 0.0 , 0 , 2 );
94+
}
95+
96+
.combo-box-popup .list-view .list-cell:hover
97+
{
98+
-fx-background-color: #00dbcd;
99+
-fx-text-fill: white;
100+
}
101+
102+
.scroll-bar .increment-button{
103+
-fx-padding: 5px;
104+
-fx-background-color:linear-gradient(#019d93,#00dbcd);
105+
}
106+
107+
.scroll-bar .decrement-button{
108+
-fx-padding: 5px;
109+
-fx-background-color:linear-gradient(#00dbcd,#019d93);
110+
}
111+
112+
.scroll-bar{
113+
/*-fx-padding: 5px;*/
114+
-fx-background-color: #47f3e2;
115+
-fx-effect: dropshadow( three-pass-box , rgba(0,0,0,0.6) , 8, 0.0 , 0 , 0 );
116+
}
117+
118+
.scroll-bar .thumb{
119+
-fx-background-color:linear-gradient(#065acf,#05a1d8);
120+
}
121+
122+
.scroll-bar .thumb:hover{
123+
-fx-background-color:linear-gradient(#05a1d8,#065acf);
124+
}
125+
126+
.date-picker .text-field{
127+
-fx-opacity: 0.75;
128+
-fx-background-color: linear-gradient(#81f957,#fae349);
129+
-fx-effect: innershadow( three-pass-box , rgba(0,0,0,0.7) , 6, 0.0 , 0 , 2 );
130+
-fx-text-fill: #000000;
131+
}
132+
133+
.spinner{
134+
-fx-opacity: 0.7;
135+
-fx-background-color: linear-gradient(#1ff608,#efd212);
136+
-fx-text-fill: #000000;
137+
}
138+
139+
.spinner:hover{
140+
-fx-opacity: 0.7;
141+
-fx-background-color: linear-gradient(#efd212,#1ff608);
142+
-fx-text-fill: #000000;
143+
}
144+
145+
.spinner .increment-arrow-button,.spinner .decrement-arrow-button{
146+
-fx-opacity: 0.8;
147+
-fx-body-color: linear-gradient(#1ff608,#efd212);
148+
-fx-background-color: linear-gradient(#1ff608,#efd212);
149+
-fx-text-fill: #000000;
150+
}
151+
152+
.spinner .increment-arrow-button:hover,.spinner .decrement-arrow-button:hover{
153+
-fx-opacity: 0.8;
154+
/*for arrows*/
155+
-fx-body-color: linear-gradient(#efd212,#1ff608);
156+
-fx-background-color: linear-gradient(#efd212,#1ff608);
157+
}
158+
159+
.text-field{
160+
-fx-opacity: 0.75;
161+
-fx-background-color: linear-gradient(#81f957,#fae349);
162+
-fx-effect: innershadow(gaussian, rgba(0,0,0,0.8),5,0,0,2);
163+
}
164+
165+
#forgot-pw{
166+
-fx-font-size: 15px;
167+
-fx-font-weight: bold;
168+
-fx-fill: linear-gradient(#003d89,#1e2e9a);
169+
}

‎build/classes/window/java/aerop.jpg

97.9 KB
Loading
16.2 KB
Loading

‎build/classes/window/java/plane.jpg

586 KB
Loading

‎build/classes/window/java/plane1.jpg

713 KB
Loading

0 commit comments

Comments
 (0)
Please sign in to comment.