mirror of
https://github.com/wassname/talk.git
synced 2026-07-01 18:58:29 +08:00
26 lines
331 B
CSS
26 lines
331 B
CSS
.container {
|
|
display: inline-block;
|
|
}
|
|
|
|
.button {
|
|
color: #2a2a2a;
|
|
margin: 5px 10px 5px 0px;
|
|
background: none;
|
|
padding: 0px;
|
|
border: none;
|
|
font-size: inherit;
|
|
|
|
&:hover {
|
|
color: #767676;
|
|
cursor: pointer;
|
|
}
|
|
|
|
&.loved {
|
|
color: #e52338;
|
|
&:hover {
|
|
color: #e52839;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
}
|