aboutsummaryrefslogtreecommitdiff
path: root/src/styles/global.scss
blob: 6b1c244c13c24330f0628cfd627d22c26dd22cce (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*
 * 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 "theme";

* {
  font-family: $defFont
}

body {
  background-color: $defBG;
  color: $defFG;
  margin: 0;
}

.root-content {
  width: 95%;
  margin: auto;
  margin-bottom: 3rem;
}

.BillingPageFlex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 70vh;
}
.BillingPageFlex div {
  box-sizing: border-box;
  border: 1px solid pink;
}

.FloatingMenuBG {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  background-color: $floatingContainerBG;
}

.FloatingMenu {
  position: fixed;

  width: 95%;
  height: 70vh;
  box-sizing: border-box;


  left: 0; right: 0;
  margin: auto;
  top: 15vh;

  background-color: $floatingBG;
  box-shadow: $floatingShadow;
  border: 1px solid $defBorderColor;


  padding: 1.5rem;
}


@media only screen and (max-device-width: 480px) {
  .root-content {
    width: 95%;
  }
}