-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathheader.css
executable file
·173 lines (160 loc) · 3.9 KB
/
header.css
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/*
Copyright 2005-2008 Redshift Software, Inc.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or https://www.boost.org/LICENSE_1_0.txt)
*/
/* Heading, title and logo. */
#heading {
padding-left: 10px;
padding-right: 10px;
background-color: rgb(229, 231, 235);
}
.heading-inner {
background-color: rgb(229, 231, 235);
padding: 6px 8px;
/*border-bottom: 1px solid rgb(209, 213, 219); << For when it goes to full grey bkgrnd */
}
.searchButton {
background-color:transparent;
outline:none;
border:none;
float:right;
height:25px;
width: 25px;
cursor:pointer;
}
/* Position the common heading. This appears on pages which have their own
* markup. Since the body might have a margin this has to be absolutely
* positioned. The spacer then pushes the page content down so that it
* doesn't fall underneath the heading.
/* #boost-common-heading-doc {
position: absolute;
left: 0;
top: 0;
}
body.boost-asciidoctor #boost-common-heading-doc {
position: static;
}
#boost-common-heading-doc-spacer {
height: 100px;
}
body.boost-asciidoctor #boost-common-heading-doc-spacer {
display: none;
}
#boost-common-heading-doc,
#heading {
margin: 0em;
border-bottom: #000000 solid 1px;
width: 100%;
font-family: sans-serif;
font-size: 9.5pt;
}
#boost-common-heading-doc .heading-inner,
#heading .heading-inner {
height: 100px;
overflow: hidden;
}
#boost-common-heading-doc *,
#heading * {
font-size: 100%;
font-weight: normal;
margin: 0;
padding: 0;
text-decoration: none;
}
#boost-common-heading-doc .heading-placard,
#heading .heading-placard {
display: none;
}
#boost-common-heading-doc .heading-title .heading-boost,
#boost-common-heading-doc .heading-title .heading-cpplibraries,
#heading .heading-title .heading-boost,
#heading .heading-title .heading-cpplibraries {
display: none;
}
#boost-common-heading-doc .heading-title,
#heading .heading-title {
float: left;
}
#boost-common-heading-doc .heading-title a,
#heading .heading-title a {
}
#boost-common-heading-doc .heading-logo,
#heading .heading-logo {
width: 270px;
height: 90px;
border: none;
vertical-align: bottom;
margin: 0px 0px 0px 1.5em;
}
#boost-common-heading-doc .heading-quote,
#heading .heading-quote {
text-align: right;
padding: 25px 1.5em 10px 0em;
}
#boost-common-heading-doc .heading-quote q,
#heading .heading-quote q {
font-size: 90%;
display: block;
}
#boost-common-heading-doc .heading-quote .heading-attribution,
#heading .heading-quote .heading-attribution {
font-size: 85%;
display: block;
}
@media (max-device-width: 480px) {
.heading-quote {
display: none;
}
}
#boost-common-heading-doc .heading-sections,
#heading .heading-sections {
display: none;
}
#boost-common-heading-doc .heading-search,
#heading .heading-search {
display: none;
text-align: right;
padding: 0em 1.5em 0em 0em;
}
#boost-common-heading-doc .heading-search #search-text .q,
#heading .heading-search #search-text .q {
background: transparent;
border: none;
border-bottom: 1px #BBBBBB solid;
margin-right: 0.25em;
font-size: 90%;
}
#boost-common-heading-doc .heading-search #search-text #q:hover,
#heading .heading-search #search-text #q:hover {
border-bottom: 1px #FFFFFF solid;
}
.boost-common-header-notice {
font-family: sans-serif;
font-size: 13px;
border: 1px solid #aa5;
background: #ffc;
color: #000;
}
a.boost-common-header-inner,
span.boost-common-header-inner,
div.boost-common-header-inner {
display: block;
padding: 10px 13px;
text-decoration: none;
color: #000;
}
a.boost-common-header-inner:hover {
text-decoration: underline;
}
@media all and (min-width: 550px) {
.boost-common-header-notice {
position: absolute;
top: 10px;
max-width: 400px;
max-height: 80px;
overflow: hidden;
box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
margin-left: 300px;
}
}*/