File: main.css

package info (click to toggle)
pico-sdk 2.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 26,552 kB
  • sloc: ansic: 146,841; asm: 13,423; python: 2,417; cpp: 2,171; yacc: 381; lex: 270; makefile: 32; sh: 13; javascript: 13
file content (105 lines) | stat: -rw-r--r-- 1,682 bytes parent folder | download
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/************************/
/*       GENERAL        */
/************************/

body {
    color: #1e1e1e;
}

h1, h2, h3, h4, h5, h6, p, a, li, span, blockquote, input, textarea, select, label {
    font-family: 'Roboto', sans-serif;
}

p {
/*    font-size: 16px;
    line-height: 25px;
    margin-bottom: 20px;*/
}

a {
    text-decoration: none;
    color: inherit;
}


/* Sidebar */
#top {
	background-color: #F5F5F5;
	width: 275px;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	height: auto !important;
    overflow: auto;
    padding: 25px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
@media (max-width: 1012px) {
	#top {
		box-shadow: 5px 0px 10px 0px rgba(0,0,0,0.25);
		position: fixed;
		z-index: 9999;
		left: -100%;
		width: 450px;
		background-color: #F5F5F5;
		transition: 0.2s left;
	}
}
@media (max-width: 767px) {
	#top {
		width: calc(100% - 50px);
		padding: 20px;
	}
}
@media (max-width: 1012px) {
	#top.open {
		left: 0;
	}
}


/* Content */
#doc-content {
	padding: 25px 50px 25px 290px;
	margin: 0 !important;
	height: auto !important;
}
@media (max-width: 1012px) {
    #doc-content {
        padding: 110px 40px 40px 40px;
    }
}
@media (max-width: 767px) {
    #doc-content {
        padding: 90px 20px 50px 20px;
    }
}


/* Hide the default doxygen stuff that we dont want */
.ui-resizable-handle {
	display: none !important;
}
#nav-sync {
	display: none !important;
}
#nav-tree {
	height: 100% !important;
	background: none;
    overflow: auto;
    padding: 35px;
    box-sizing: border-box;
}
#nav-path, #side-nav {
	display: none !important;
}

div.line,
div.line a,
div.line span {
	font-family: monospace;
}