-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.qss
111 lines (101 loc) · 2.15 KB
/
style.qss
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
/*window*/
QWidget#win {
background-color : #000917;
}
/* scrollbar */
QScrollBar {
width : 10px;
background : white;
}
QScrollBar::handle {
background : #ff8133;
border : 1px solid #ff8133;
border-radius : 5px
}
QScrollBar::handle::pressed {
background : #000917;
}
/* chat area */
QScrollArea {
border : 2px solid #ff8133;
background : #000917
}
/* chat area inside */
QWidget#chat_area_inside {
background-color : #000917;
}
/* left bubble */
QLabel#left_bubble {
font : 12px bold;
color : #ffd6bd;
background-color : #000917;
border : 1px solid #ff8133;
padding : 5px;
margin : 5px 300px 5px 0;
border-radius : 10px;
border-top-left-radius : 0px;
}
/* right bubble */
QLabel#right_bubble {
font : 12px bold;
color : #000917;
background-color : #ff8133;
padding : 5px;
margin : 5px 0 5px 300px;
border-radius : 10px;
border-top-right-radius : 0px;
}
/* display image */
QLabel#display_image {
padding : 10px
}
/* select image */
QPushButton#select_image {
background : #000917;
border-radius : 30px;
border : 2px solid #ff8133;
}
QPushButton#select_image::hover {
border : 5px solid #ff8133;
}
QPushButton#select_image::pressed {
background : #ffd6bd;
}
/* export chat */
QPushButton#export_chat {
background : #000917;
border-radius : 30px;
border : 2px solid #ff8133;
}
QPushButton#export_chat::hover {
border : 5px solid #ff8133;
}
QPushButton#export_chat::pressed {
background : #ffd6bd;
}
/* input text */
QTextEdit#input_text {
color : #ffd6bd;
padding : 10px;
font: 15px;
background : #000917;
border-radius : 10px;
border : 2px solid #ff8133;
}
/* send text */
QPushButton#send_text {
font : 20px bold;
color : #ff8133;
height : 40px;
width : 100px;
background : #000917;
border-radius : 20px;
border : 2px solid #ff8133;
margin : 0 40px 0 40px;
}
QPushButton#send_text::hover {
border : 5px solid #ff8133;
}
QPushButton#send_text::pressed {
background : #ffd6bd;
}