~diegosarmentero/ubuntuone-windows-installer/titles-on-pages

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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
QWidget{
    font-family: "Ubuntu";
    color: #333333;
}

QFrame#SideWidget {
    background-color: white;
    border-style: dotted;
    border-color: #939389;
    border-right-width: 1px;
    color: white;
    min-height: 100px;
    margin-left: 10px;
}

QWizard,
QDialog{
    background-color: white;
}

QLabel#name_assistance,
QLabel#email_assistance,
QLabel#confirm_email_assistance,
QLabel#password_assistance,
QLabel#refresh_label{
    border-image: url(":/balloon_shape.png");
}

QLineEdit{
    border: 1px solid #aea79f;
}

QLabel#install_label,
QLabel#sign_in_label,
QLabel#choose_services_label,
QLabel#select_folders_label,
QLabel#sync_label{
    font-size: 14px;
}

QTextEdit{
    background-color: #ffffff;
    border: none;
}

QPushButton{
    border-radius: 5px;
    border-style: solid;
    padding: 6px;
    padding-left: 20px;
    padding-right: 20px;
    border-width: 1px;
    height: 14px;
}

QPushButton[default="true"] {
    background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
        stop: 0 #fe9e84,stop: 1.0 #dd4814);
    color: white;
    border-color: #999999;
}

QPushButton:hover[default="true"] {
    background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
        stop: 0 #ffb19c,stop: 1.0 #dd4814);
    color: white;
    border-color: #999999;
}

QPushButton:pressed[default="true"] {
    background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
        stop: 0 #b93f14,stop: 1.0 #dd4814);
    color: white;
    border-color: #999999;
}

QPushButton[default="false"] {
    background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
        stop: 0 #ffffff,stop: 1.0 #e6e6e6);
    color: #333333;
    border-color: #999999;
}

QPushButton:hover[default="false"] {
    background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
        stop: 0 #ffffff,stop: 1.0 #ededed);
    color: #333333;
    border-color: #999999;
}

QPushButton:pressed[default="false"] {
    background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
        stop: 0 #d9d9d9,stop: 1.0 #fefefe);
    color: #333333;
    border-color: #999999;
}

QPushButton[DisabledState="true"] {
    background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
        stop: 0 #eaeaea, stop: 1.0 #cacaca);
    color: #595959;
    border-color: #939389;
}

QPushButton[DisabledState="false"] {
    background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
        stop: 0 #fe9e84,stop: 1.0 #dd4814);
    color: white;
    border-color: #999999;
}

QFrame#frm_box {
    background: #ffffff;
    border-radius: 5px;
    border-style: solid;
    border-color: #939389;
    border-width: 1px;
    color: white;
    min-height: 100px;
}

QFrame#frm_box > QLabel{
    font-size: 24px;
}

QLabel#title_label{
    font-size: 20px;
}