forked from zombieFox/nightTab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.css
More file actions
executable file
·119 lines (101 loc) · 2.29 KB
/
Copy pathheader.css
File metadata and controls
executable file
·119 lines (101 loc) · 2.29 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
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
.header {
padding: calc(var(--gutter) * var(--header-shade-padding)) 0;
width: 100%;
position: relative;
z-index: var(--z-index-header);
}
.is-bookmarks-show-link .header {
position: fixed;
top: 0;
left: 0;
}
.header .header-shade,
.header .header-border {
content: "";
display: block;
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
pointer-events: none;
}
.is-header-shade-style-scroll .header .header-shade {
transition: background-color var(--animation-speed-slow) ease-in-out;
animation: none;
}
.is-header-shade-show .header .header-shade {
background-color: rgb(var(--header-shade-color));
opacity: var(--header-shade-opacity);
}
.is-header-shade-border-top .header .header-border {
border-top: var(--line-width) solid rgb(var(--accent));
}
.is-header-shade-border-bottom .header .header-border {
border-bottom: var(--line-width) solid rgb(var(--accent));
}
.header-area {
margin: 0 calc(var(--gutter) * -1);
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: stretch;
}
.header-item {
margin: var(--gutter);
max-width: calc(100% - var(--gutter) * 2);
display: flex;
flex-wrap: nowrap;
justify-content: flex-start;
align-items: center;
position: relative;
}
.header-search-input[type="text"] {
padding-right: 3em;
}
.header-search-clear {
position: absolute;
top: 0;
right: 0;
}
.is-header-alignment-horizontal-left .header-area {
justify-content: flex-start;
}
.is-header-alignment-horizontal-center .header-area {
justify-content: center;
}
.is-header-alignment-horizontal-right .header-area {
justify-content: flex-end;
}
.is-layout-width-thin.is-header-search-grow .header-search,
.is-header-search-grow .header-search {
flex-grow: 1;
flex-basis: 100%;
}
@media (min-width: 550px) {
.is-header-search-grow .header-search {
flex-basis: initial;
}
}
.header-search {
width: 15vw;
min-width: 15em;
}
.header-date,
.header-clock,
.header-search,
.header-edit-add,
.header-accent,
.header-greeting,
.header-menu {
display: none;
}
.is-header-search-show .header-search,
.is-header-date-show .header-date,
.is-header-clock-show .header-clock,
.is-header-edit-add .header-edit-add,
.is-header-accent .header-accent,
.is-header-greeting .header-greeting,
.is-menu .header-menu {
display: flex;
}