加入了node_modules
添加了新的功能项
This commit is contained in:
@@ -81,4 +81,45 @@
|
||||
margin: 0 -20px;
|
||||
border-radius: 0;
|
||||
}
|
||||
}
|
||||
|
||||
/* 渐变按钮基础样式 */
|
||||
.gradient-btn {
|
||||
display: inline-block;
|
||||
padding: 10px 20px;
|
||||
background: linear-gradient(135deg, #71eaeb 0%, #416bdf 100%);
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 5px;
|
||||
cursor: pointer;
|
||||
font-size: 16px;
|
||||
transition: all 0.3s ease;
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
||||
text-decoration: none;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.gradient-btn:hover {
|
||||
background: linear-gradient(135deg, #416bdf 0%, #71eaeb 100%);
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
.gradient-btn:active {
|
||||
transform: translateY(0);
|
||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
/* 按钮变体 */
|
||||
.gradient-btn.block {
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.gradient-btn.left {
|
||||
margin: 20px 0;
|
||||
}
|
||||
|
||||
.gradient-btn.center {
|
||||
margin: 20px auto;
|
||||
}
|
||||
Reference in New Issue
Block a user