-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.css
56 lines (41 loc) · 971 Bytes
/
Main.css
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
.root{
-fx-background-color: rgb(255, 255, 255);
-fx-font: 14 arial;
}
.toptext {
-fx-background-color: #1345e9;
}
.functionStyles {
-fx-font: 14 arial;
}
.myCancelButton {
-fx-background-color: #f7f9fc;
-fx-border-color: rgb(218, 218, 218);
-fx-background-radius: 30px;
-fx-border-width: 1;
-fx-border-radius: 30px;
-fx-text-fill: rgb(17, 0, 255);
}
myAll{
-fx-padding : 20px;
}
.myCancelButton:hover {
-fx-background-color: #e6e6e6;
}
.mySendButton {
-fx-background-color: #f7f9fc;
-fx-border-color: rgb(218, 218, 218);
-fx-background-radius: 30px;
-fx-border-width: 1;
-fx-border-radius: 30px;
-fx-text-fill: rgb(17, 0, 255);
}
.mySendButton:hover {
-fx-background-color: #e6e6e6;
}
.myTextField {
-fx-background-color: #eceff1;
-fx-background-radius: 30px;
-fx-border-radius: 30px;
-fx-border-color: #eceff1;
}