Spaces:
Running
on
Zero
Running
on
Zero
File size: 785 Bytes
243f5a6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
/* 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;}
""" */ |