forked from ConcealNetwork/conceal-desktop
-
Notifications
You must be signed in to change notification settings - Fork 3
/
button styles.txt
60 lines (53 loc) · 1.01 KB
/
button styles.txt
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
//Fuego #ff8000 border white text (when not hovered)
QPushButton#m_varName
{
color: #fff;
border: 1px solid #ff8000;
font-size: 14px;
border-radius: 5px;
font-family: 'Gotham';
}
QPushButton#m_varName:hover
{
color: #ff8000;
border: 1px solid #ff8000;
font-size: 14px;
border-radius: 5px;
font-family: 'Gotham';
}
//Fuego orange on Fuego orange
QPushButton#m_varName
{
color: #ff8000;
border: 1px solid #ff8000;
font-size: 14px;
border-radius: 5px;
font-family: 'Gotham';
}
QPushButton#m_varName:hover
{
color: black;
border: 1px solid #ff8000;
font-size: 14px;
background-color: #ff8000;
border-radius: 5px;
font-family: 'Gotham';
}
//White on White
QPushButton#m_varName
{
color: #ccc;
border: 1px solid #444;
font-size: 14px;
border-radius: 5px;
font-family: 'Gotham';
}
QPushButton#m_varName:hover
{
color: #fff;
border:
1px solid #444;
font-size: 14px;
border-radius: 5px;
font-family: 'Gotham';
}