forked from ionic-team/ionic-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.css
More file actions
63 lines (54 loc) · 1.08 KB
/
Copy pathheader.css
File metadata and controls
63 lines (54 loc) · 1.08 KB
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
docs-header {
background-color: var(--background);
box-shadow: 0px 1px 3px rgba(2, 8, 20, 0.06), 0px 1px 2px rgba(2, 8, 20, 0.04);
color: var(--text-color--light);
display: block;
font-size: 14px;
font-weight: 500;
line-height: 1;
position: fixed;
top: 0;
left: 0;
transform: translateY(0);
transition: transform 200ms ease;
width: 100%;
white-space: nowrap;
z-index: 1;
}
docs-header.hidden {
transform: translateY(-100%);
}
docs-header header {
height: var(--header-height);
padding: 0 1.5rem;
}
docs-header header,
docs-header nav {
align-items: center;
display: flex;
}
docs-header header > *:not(:last-child),
docs-header nav > *:not(:last-child) {
margin-right: 1em;
}
docs-header a {
color: inherit;
padding: 10px 0;
}
docs-header .link-active {
color: var(--text-color--dark);
}
@media (hover: hover) {
docs-header a:not(.link-active):hover {
color: var(--text-color);
}
}
.Logo {
color: var(--text-color--dark);
font-family: var(--heading-font-family);
height: 25px;
}
.UtilNav {
font-size: 12px;
margin-left: auto;
}