kitty/docs/_static/custom.css

37 lines
631 B
CSS
Raw Normal View History

/*
* custom.css
* Copyright (C) 2018 Kovid Goyal
*
* Distributed under terms of the MIT license.
*/
.italic {
font-style: italic;
}
.sidebar-logo {
2022-09-30 03:44:09 +03:00
height: 128px;
}
.major-features li {
margin-bottom: 0.75ex;
2018-05-30 11:13:48 +03:00
margin-top: 0.75ex;
2018-05-30 12:44:07 +03:00
}
.sidebar-tree a.current {
font-style: italic;
}
2021-07-21 06:41:11 +03:00
details > summary {
color: var(--color-link);
cursor: pointer;
text-decoration-color: var(--color-link-underline);
text-decoration-line: underline;
}
2022-01-04 13:51:00 +03:00
/* pygments adds an underline to some white-space, this is particularly visible in
* dark mode. Remove it. */
.highlight .w {
text-decoration: none
}