ClickHouse/website/css/blog.css
Ivan Blinkov 5c84f242dd
[blog] add integration with HackerNews and Reddit (#11728)
* improve tweet css

* add HN and Reddit share links

* update po

* Add support for HackerNews and Reddit
2020-06-17 15:12:05 +03:00

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;
}
}