-
Notifications
You must be signed in to change notification settings - Fork 3
/
Inventory.css
93 lines (74 loc) · 1.62 KB
/
Inventory.css
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
body {
margin: 0;
padding: 0;
background-color: rgb(235, 228, 228);
color: #000000;
font-family: 'Montserrat', sans-serif;
}
.material-icons-outlined {
vertical-align: middle;
line-height: 1px;
font-size: 35px;
}
.grid-container {
display: flex;
margin-top: 5px;
padding: 10px;
flex-direction: column;
}
.header {
display: flex;
height: 50px;
width: 100%;
align-items: center;
justify-content: space-around;
box-shadow: 0 6px 7px -3px rgba(0, 0, 0, 0.35);
}
.menu-icon {
display: none;
}
#sidebar {
display: flex;
height: 20px;
background-color: rgb(235, 228, 228);
transition: all 0.5s;
-webkit-transition: all 0.5s;
width: 30%;
}
.sidebar-title {
display: flex;
justify-content: space-between;
align-items: center;
padding: 30px 30px 30px 30px;
margin-bottom: 30px;
}
.sidebar-title > span {
display: none;
}
.sidebar-brand {
margin-top: 15px;
font-size: 20px;
font-weight: 700;
}
.sidebar-list {
padding: 0;
margin-top: 15px;
list-style-type: none;
}
.sidebar-list-item {
padding: 20px 20px 20px 20px;
font-size: 18px;
}
.sidebar-list-item:hover {
background-color: rgba(255, 255, 255, 0.2);
cursor: pointer;
}
.sidebar-list-item > a {
text-decoration: none;
color: #1b1b1c;
}
.sidebar-responsive {
display: inline !important;
position: absolute;
z-index: 12 !important;
}