I have declared new button and assgin stylesheet to it.
Qt Code:
  1. button = new QPushButton(this);
  2. button->setText("TEST");
  3. button->setGeometry(400,50,70,40);
  4. button->setStyleSheet(
  5. "color:white;\n"
  6. "background:rgb(255,255,0);"
  7. "border-radius:10px;\n"
  8. "font:bold 16px;\n"
  9. "font-family:\"Arial\";\n"
  10. );
To copy to clipboard, switch view to plain text mode 

my the problem is: how to apply the below code

QPushButton:Pressed {
padding-left: 5px;
padding-top: 5px;
}