-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
89 lines (85 loc) · 1.88 KB
/
styles.css
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
QMainWindow {
color: #dfebec;
background-color: #2d2c2c;
}
QLineEdit,QTextBrowser {
background: #dfebec;
border: 2px solid #de9836;
border-radius: 5px;
text-align: center;
}
QLineEdit:hover:focus {
border-color: #b10b2d;
}
#printWindow {
border: 2px solid #de9836;
border-radius: 7px;
text-align: center !important;
child-align: middle;
padding: 1em 0em 1em 1.5em;
margin: 1em 0 1.5em 0 ;
font-size: 20px;
}
QLabel {
color: #d5e7e7;
font-size: 15px;
font-weight: bold;
font-family: "Comic Sans MS";
}
QPushButton {
background-color: cornflowerblue;
font-size: 13px;
font-weight: bold;
font-family: "Comic Sans MS";
color: #d5e7e7;
border: 2px solid #cbb007;
border-radius: 5px;
text-align: center;
}
QPushButton:hover:pressed {
background-color: #b10b2d;
color: #d5e7e7;
border: 2px solid #db4e0d;
border-radius: 5px;
text-align: center;
}
QPushButton:hover:!pressed {
background-color: cornflowerblue;
color: #d5e7e7;
border: 2px solid #db4e0d;
border-radius: 5px;
text-align: center;
}
QScrollBar{
width: 10px;
border-radius: 5px;
background-color: rgb(170, 165, 165);
}
#out0,#out1,#out2, #out3,#out4,#out5,#out6,#out7,#out8 {
font-size: 20px;
}
#sim_output_text_grid {
margin-top: 0;
margin-bottom: 1em;
}
QMenu {
background-color: #a8a8a8; /* sets background of the menu */
border: 1px solid #4b4a4a;
color: #646e6f;
}
QMenuBar {
background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1,
stop:0 lightgray, stop:1 darkgray);
}
QMenuBar::item {
spacing: 3px; /* spacing between menu bar items */
padding: 1px 4px;
background: transparent;
border-radius: 4px;
}
QMenuBar::item:selected { /* when selected using mouse or keyboard */
background: #a8a8a8;
}
QMenuBar::item:pressed {
background: #888888;
}