(text)
| 56 | |
| 57 | @staticmethod |
| 58 | def create_button(text): |
| 59 | button = QPushButton(text) |
| 60 | button.setStyleSheet(""" |
| 61 | background-color: #3E3E3E; |
| 62 | border: none; |
| 63 | padding: 10px; |
| 64 | font-size: 16px; |
| 65 | """) |
| 66 | button.setCursor(Qt.CursorShape.PointingHandCursor) |
| 67 | return button |
| 68 | |
| 69 | @staticmethod |
| 70 | def create_vertical_layout(): |