styles.css 477 B

12345678910111213
  1. .custom-button {
  2. background-color: #4CAF50; /* 绿色背景 */
  3. color: white; /* 白色文字 */
  4. border: none; /* 无边框 */
  5. padding: 10px 20px; /* 内边距 */
  6. text-align: center; /* 文字居中 */
  7. text-decoration: none; /* 无下划线 */
  8. display: inline-block; /* 内联块元素 */
  9. font-size: 16px; /* 字体大小 */
  10. margin: 4px 2px; /* 外边距 */
  11. cursor: pointer; /* 鼠标指针样式 */
  12. border-radius: 8px; /* 圆角 */
  13. }