如何使用 QSS 更改 QLineEdit 字体大小?

How to change QLineEdit font size using QSS?

下面的代码创建了一个应用了 QSS 样式表的 QLineEdit()。 如果您展示如何使用 QSS 更改 QLineEdit 的字体大小和字体颜色,我将不胜感激。我试过了font-size: 12;。但是没用。

from PyQt4.QtCore import *
from PyQt4.QtGui import *

app=QApplication([])

bgColor='#262626'
style="""QLineEdit{{ color: #EBEBEB; border: 0px solid black; background-color: {0}; color: #EBEBEB }} QLineEdit:hover{{ border: 1px solid #ffa02f;}}""".format(bgColor) 

lineEdit=QLineEdit()
lineEdit.setText('My Line Edit')
lineEdit.setStyleSheet(style)

lineEdit.show()
sys.exit(app.exec_())

用单位指定字体大小;类似于 pxpt:

font-size: 30px;