Spaces:
Running
on
Zero
Running
on
Zero
| /* style.css */ | |
| .custom-button { | |
| background-color: greenyellow; /* 背景颜色 */ | |
| color: white; /* 文字颜色 */ | |
| border: none; /* 无边框 */ | |
| padding: 10px 20px; /* 内边距 */ | |
| text-align: center; /* 文本居中 */ | |
| text-decoration: none; /* 无下划线 */ | |
| display: inline-block; /* 行内块 */ | |
| font-size: 16px; /* 字体大小 */ | |
| margin: 4px 2px; /* 外边距 */ | |
| cursor: pointer; /* 鼠标指针 */ | |
| border-radius: 5px; /* 圆角边框 */ | |
| } | |
| .custom-button:hover { | |
| background-color: darkgreen; /* 悬停时的背景颜色 */ | |
| } | |
| /* css = """ | |
| #warning {background: red;} | |
| .feedback {font-size: 24px !important;} | |
| .feedback textarea {font-size: 24px !important;} | |
| """ */ |