mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 15:42:39 +00:00
5c84f242dd
* improve tweet css * add HN and Reddit share links * update po * Add support for HackerNews and Reddit
45 lines
668 B
CSS
45 lines
668 B
CSS
body.blog .dropdown-item {
|
|
color: #111 !important;
|
|
}
|
|
|
|
body.blog .dropdown-item:hover,
|
|
body.blog .dropdown-item:focus {
|
|
background-color: #efefef;
|
|
}
|
|
|
|
.blog .social-icon {
|
|
background: #eee;
|
|
}
|
|
|
|
.comment-even {
|
|
background: #fff;
|
|
}
|
|
|
|
.comment-odd, .comments-bg {
|
|
background: #f8f9fa;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
body.blog .dropdown-item {
|
|
color: #fff !important;
|
|
}
|
|
|
|
.blog .dropdown-item:hover,
|
|
.blog .dropdown-item:focus,
|
|
.blog .tag{
|
|
background-color: #666 !important;
|
|
}
|
|
|
|
.blog .social-icon {
|
|
background: #444451;
|
|
}
|
|
|
|
.comment-even {
|
|
background: #111;
|
|
}
|
|
|
|
.comment-odd, .comments-bg {
|
|
background: #333;
|
|
}
|
|
}
|