blob: d0fd5b8859719c910e1a836b3c7fd2ac0a8108c7 (
plain)
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
|
/* -----------------------------------------------------------------------------
HEADER
----------------------------------------------------------------------------- */
body > header {
position: fixed;
backface-visibility: hidden;
top: 0;
left: 0;
right: 0;
width: 100%;
margin: 0 auto;
height: 4em;
background-color: var(--header-background);
box-shadow: 0 2px 4px -1px rgba(0,0,0,0.25);
margin-bottom: 15px;
display: flex;
align-items: center;
z-index: 999;
> h1 {
display: flex;
font-size: 1em;
img {
height: 2.667em;
}
}
}
|