-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
47 lines (39 loc) · 1.01 KB
/
main.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
@import "globalMetadataVariables.css";
/* Style the version links in header & footer:
*/
.version.versionHeader {
display: inline-block;
line-height: 20px;
padding: 15px 30px 15px 30px;
}
.version.versionFooter {
padding-right: 30px;
}
/* styles to include app title next to breadcrumnb under logo:
*/
.breadcrumb::before {
content: var(--_appTitle) ":";
padding-right: 20px;
}
/* Fix scroll to anchor behavior for tablet and desktop,
so scroll target is not hidden by floating nav bar
*/
@media only screen and (min-width: 769px) {
.article a[name] {
/* move anchor up 75px so page scrolls further down */
position: absolute;
top: -75px;
}
p {
/* <p> must have ' position: relative' in order to make
* 'position: absolute' of the preceeding rule work
*/
position: relative;
}
}
/* Improve blockquote style: original font-size too large
*/
blockquote {
font-size: 1.03em;
background-color: rgb(250, 250, 246);
}