Add CSS styling to history view to make text lighter coloured.
[electrum-nvc.git] / data / style.css
1 #main_window
2 {
3   background: qlineargradient(x1: 0, y1: 0, x2:0,y2:1, stop: 0 white , stop: 1 #E8E8E8);
4 }
5
6 MiniWindow QPushButton {
7   color: #777;
8   border: 1px solid #CCC;
9   border-radius: 0px;
10   background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
11   stop: 0 white, stop: 1 #E6E6E6);
12   min-height: 25px;
13   min-width: 30px;
14 }
15
16 #send_button{
17   color: #E5F2FF;
18   border: 1px solid #3786E6;
19   border-radius: 4px;
20   background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
21   stop: 0 #72B2F8, stop: 1 #3484E6);
22   min-width: 80px;
23   min-height: 23px;
24   padding: 2px;
25 }
26
27 #send_button:disabled{
28   color: #D3E8FE;
29   border: 1px solid #6DAEF7;
30   border-radius: 4px;
31   background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
32   stop: 0 #A5CFFA, stop: 1 #72B2F8);
33   min-width: 80px;
34   min-height: 23px;
35   padding: 2px;
36 }
37
38 #address_input, #amount_input
39 {
40     color: #000;
41     padding: 5px;
42     border-radius: 4px;
43     border: 1px solid #AAA9A9;
44     width: 225px;
45 }
46
47 #address_input[isValid=true]
48 {
49   color: #4D9948;
50   padding: 5px;
51   border-radius: 4px;
52   border: 1px solid #AAA9A9;
53   width: 225px;
54   margin-top: 4px;
55 }
56
57 #address_input[isValid=false]
58 {
59   color: #CE4141;
60   padding: 5px;
61   border-radius: 4px;
62   border: 1px solid #AAA9A9;
63   width: 225px;
64   margin-top: 4px;
65 }
66
67 #address_input[isValid=placeholder]
68 {
69   color: blue;
70   padding: 5px;
71   border-radius: 4px;
72   border: 1px solid #AAA9A9;
73   width: 225px;
74   margin-top: 4px;
75 }
76 #balance_label
77 {
78     color: #333;
79 }
80
81 #history::item
82 {
83     color: #888;
84 }
85