blob: 4e5253d894ebbf803edbb07543c00d200636dd59 (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
/*
* OpenBills - Self hosted browser app to generate and keep track of simple invoices
* Version - 0
* Licensed under the MIT license - https://opensource.org/licenses/MIT
*
* Copyright (c) 2021 Vidhu Kant Sharma
*/
@import "../../styles/_theme";
.header {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
align-items: center;
justify-content: space-between;
position: static;
margin: 0 0 1.5rem 0;
padding: none;
width: 100%;
height: 5rem;
background-color: $altBG;
box-shadow: $defBigShadow;
}
.header div {
margin: auto 1rem;
}
nav a {
text-decoration: none;
padding: 0.3rem;
color: $defLink;
}
.placeholder {
width: 5rem;
height: 3rem;
}
.inlineBlock {
display: inline-block;
}
p, h1, h2, h3, h4, h5, h6 {
color: $defFG;
}
|