mirror of
https://github.com/wassname/talk.git
synced 2026-06-30 05:26:17 +08:00
26 lines
373 B
CSS
26 lines
373 B
CSS
.base {
|
|
background: red;
|
|
i {
|
|
font-size: 30px;
|
|
transform: translate(-14px,-12px) !important;
|
|
}
|
|
}
|
|
|
|
.type--approve {
|
|
background: #388E3C;
|
|
color: rgba(255, 255, 255, 0.901961);
|
|
}
|
|
|
|
.type--approve:hover {
|
|
background: #40a244;
|
|
}
|
|
|
|
.type--reject {
|
|
background: #D32F2F ;
|
|
color: rgba(255, 255, 255, 0.901961);
|
|
}
|
|
|
|
.type--reject:hover {
|
|
background: #e53333;
|
|
}
|