mirror of
https://github.com/wassname/talk.git
synced 2026-08-14 12:50:17 +08:00
21 lines
327 B
CSS
21 lines
327 B
CSS
.active {
|
|
background: #F0F0F0;
|
|
}
|
|
|
|
.base {
|
|
color: #4E5259;
|
|
border: solid 1px #D8D8D8;
|
|
background: white;
|
|
border-top-left-radius: 5px;
|
|
border-top-right-radius: 5px;
|
|
display: inline-block;
|
|
border-bottom: none;
|
|
padding: 8px 10px;
|
|
margin-right: -1px;
|
|
}
|
|
|
|
.base:hover {
|
|
background: #f3f3f3;
|
|
cursor: pointer;
|
|
}
|