Applying Piccolo theme
[kuberef.git] / docs / _static / custom.css
1 /* Changing the color of top navbar in piccolo */
2 div#top_nav nav {
3     background-color: #16326c;
4     padding:0.5rem;
5 }
6
7 /* Changing the size of the logo in the top navbar in piccolo */
8 div#top_nav nav h1 img {
9         height: 2rem;
10 }
11
12 /* Changing the margin of the main text in piccolo */
13 div.document {
14         margin-left: 10rem;
15         margin-right: 20rem;
16 }
17
18 /* Changing link color in piccolo */
19 a {
20         color: #007574ff;
21 }
22
23 /* Changing link color in the left sidebar in piccolo */
24 div.sphinxsidebar ul li a.current {
25         color: #007574ff;
26 }
27
28 /* Changing the hover color in the left sidebar in piccolo */
29 div.sphinxsidebar ul li a:hover {
30         color: #007574ff;
31 }
32
33 /* Changing the hover color in the right sidebar in piccolo */
34 div#right_sidebar ul li a:hover {
35         color: #007574ff;
36 }
37
38 /* Changing the color of the > icon next to Page contents */
39 div#right_sidebar p span.icon {
40         color: #007574ff;
41 }
42
43 /* Changing the color of the Page contents title */
44 div#right_sidebar p span {
45         color: #007574ff;
46 }
47
48 /* Changing the color of the search button */
49 div.document form input[type=submit], div.document form button {
50         background-color: #16326c;
51 }
52
53 /* Changing the color of the Search text in the Search button */
54 div#searchbox form.search input[type="submit"] {
55         color: #16326c;
56 }
57
58 /* Changing the color of the > icon next to the collapsed Page contents */
59 div#show_right_sidebar p span.icon {
60         color: rgba(0, 0, 0, 0.6);
61 }
62
63 /* Removing option to switch to dark mode */
64 div#top_nav nav a#mode_toggle, div#top_nav nav a#source_link {
65         display: none;
66 }