Modified styling, removed obsolete styles and added wether we have are displaying...
[electrum-nvc.git] / data / cleanlook / 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: 30px;
13   min-width: 30px;
14 }
15
16 #send_button{
17   color: #FFF;
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   padding: 2px;
23   width: 20px;
24 }
25
26 #send_button:disabled{
27   color: #D3E8FE;
28   border: 1px solid #6DAEF7;
29   border-radius: 4px;
30   background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
31   stop: 0 #A5CFFA, stop: 1 #72B2F8);
32 }
33 #address_input, #amount_input, #label_input
34 {
35     color: #000;
36     padding: 5px;
37     border-radius: 5px;
38     min-height: 23px;
39     border: 1px solid #AAA9A9;
40     width: 200px;
41 }
42
43 #address_input[isValid=true]
44 {
45   color: #4D9948;
46 }
47
48 #address_input[isValid=false]
49 {
50   color: #CE4141;
51 }
52
53 #balance_label
54 {
55     color: #333;
56 }
57
58 #history
59 {
60     color: #888;
61 }
62