-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.py
More file actions
14 lines (13 loc) · 1.1 KB
/
style.py
File metadata and controls
14 lines (13 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# stylesheet for the application
STYLESHEET = "QPushButton {border-style: solid; border-radius: 5px; \
border-width: 1px; border-color: rgba(0,0,0,80); padding: 5px} \
QPushButton:hover {background-color: rgba(0, 0, 255, 0.05)} \
QListWidget {background-color: rgb(230, 230, 230); border-style: solid;\
border-radius: 10px; border-width: 1px; border-color: rgba(0,0,0,80);} \
QListWidget::item:selected {background-color: rgba(0, 0, 255, 0.1); border-radius: 10px; \
border-style: solid; border-width: 1px; border-color: rgba(0,0,0,80); \
color: black}\
QListWidget::item:hover {background-color: rgba(0, 255, 0, 0.1); border-radius: 10px; \
border-style: solid; border-width: 1px; border-color: rgba(0,0,0,80)}\
QLCDNumber {border-style: solid; border-radius: 8px; background-color: rgb(230, 230, 230); \
border-width: 1px; border-color: rgba(0,0,0,80);}"