summaryrefslogtreecommitdiffstats
path: root/docs/_static/custom.css
blob: 46c9616178cc5cd23d98297c13c86a1555885103 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/* Changing the color of top navbar in piccolo */
div#top_nav nav {
    background-color: #16326c;
    padding:0.5rem;
}

/* Changing the size of the logo in the top navbar in piccolo */
div#top_nav nav h1 img {
	height: 2rem;
}

/* Changing the margin of the main text in piccolo */
div.document {
	margin-left: 10rem;
	margin-right: 20rem;
}

/* Changing link color in piccolo */
a {
	color: #007574ff;
}

/* Changing link color in the left sidebar in piccolo */
div.sphinxsidebar ul li a.current {
	color: #007574ff;
}

/* Changing the hover color in the left sidebar in piccolo */
div.sphinxsidebar ul li a:hover {
	color: #007574ff;
}

/* Changing the hover color in the right sidebar in piccolo */
div#right_sidebar ul li a:hover {
	color: #007574ff;
}

/* Changing the color of the > icon next to Page contents */
div#right_sidebar p span.icon {
	color: #007574ff;
}

/* Changing the color of the Page contents title */
div#right_sidebar p span {
	color: #007574ff;
}

/* Changing the color of the search button */
div.document form input[type=submit], div.document form button {
	background-color: #16326c;
}

/* Changing the color of the Search text in the Search button */
div#searchbox form.search input[type="submit"] {
	color: #16326c;
}

/* Changing the color of the > icon next to the collapsed Page contents */
div#show_right_sidebar p span.icon {
	color: rgba(0, 0, 0, 0.6);
}

/* Removing option to switch to dark mode */
div#top_nav nav a#mode_toggle, div#top_nav nav a#source_link {
	display: none;
}