-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
93 lines (80 loc) · 1.89 KB
/
style.css
File metadata and controls
93 lines (80 loc) · 1.89 KB
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
root {
display: block;
}
.root {
-fx-background-image: url("image.png");
-fx-background-size: stretch;
}
.text-area {
-fx-background-color: linear-gradient(from 25% 25% to 100% 100%, black, #006400);
-fx-text-fill: white;
}
.content {
-fx-background-color: transparent;
}
.viewport{
-fx-background-color: transparent;
}
.text {
-fx-font-size: 12px;
-fx-font-family: "Arial Narrow";
-fx-fill: #000000;
-fx-alignment: center;
}
#Morpheus {
-fx-font-size: 32px;
-fx-fill: red;
}
#idAndUser {
-fx-font-size: 32px;
-fx-fill: red;
}
#welcometext {
-fx-font-size: 32px;
-fx-fill: red;
}
.button {
-fx-text-fill: black;
-fx-font-family: "Arial Narrow";
-fx-font-weight: bold;
-fx-background-color:
linear-gradient(#f0ff35, #a9ff00),
radial-gradient(center 50% -40%, radius 200%, #b8ee36 45%, #80c800 50%);
-fx-background-radius: 6, 5;
-fx-background-insets: 0, 1;
-fx-effect: dropshadow( three-pass-box , rgba(0,0,0,0.4) , 5, 0.0 , 0 , 1 );
}
.button:hover{
-fx-background-color: linear-gradient(#f0ff00, #a9ff00);
}
.button:pressed{
-fx-background-color: linear-gradient(#f0fff9, #a9ff00);
}
#exit {
-fx-background-color:
linear-gradient(#0000ff, #8080ff),
radial-gradient(center 50% -40%, radius 200%, #0000ff 45%, #8080ff 50%);
}
#exit:hover{
-fx-background-color: linear-gradient(#80ff80, #80ff80);
}
#exit:pressed{
-fx-background-color: linear-gradient(#80ff80, #00ff00);
}
#Lista {
-fx-text-fill: black;
-fx-font-family: "Arial Narrow";
-fx-font-weight: bold;
-fx-background-color:
linear-gradient(#f0ff35, #a9ff00),
radial-gradient(center 50% -40%, radius 200%, #b8ee36 45%, #80c800 50%);
-fx-background-radius: 6, 5;
-fx-background-insets: 0, 1;
-fx-effect: dropshadow( three-pass-box , rgba(0,0,0,0.4) , 5, 0.0 , 0 , 1 );
}
#Lista:hover{
-fx-background-color: linear-gradient(#f0ff00, #a9ff00);
}
#Lista:pressed{
-fx-background-color: linear-gradient(#f0fff9, #a9ff00);
}