Project

General

Profile

1
:root {
2
  --sidebar-width: 320px;
3
  --sidebar-mini-width: 130px;
4
  --sidebar-font-size: 14px;
5
  --header-height: 100px;
6
  --background-color: #F9FBFC;
7
}
8

    
9
#sidebar_main .badge {
10
  height: 59px;
11
  position: absolute;
12
  top: 0;
13
  left: -5px;
14
  z-index: 1;
15
  background-color: transparent;
16
  display: block !important;
17
}
18

    
19
#sidebar_main #sidebar_content {
20
  width: var(--sidebar-width);
21
  position: fixed;
22
  height: 100%;
23
  top: 0;
24
  bottom: 0;
25
  left: 0;
26
  z-index: 981;
27
  background: #fff;
28
}
29

    
30
.sidebar_main_swipe.sidebar_mini #sidebar_switcher_toggle {
31
  left: calc(var(--sidebar-mini-width) + 0px);
32

    
33
}
34

    
35
.sidebar_main_swipe #sidebar_switcher_toggle {
36
  left: calc(var(--sidebar-width) + 0px);
37
}
38

    
39
#sidebar_main .menu_section > ul > li > a, #sidebar_main .menu_section > ul > li > ul > li > a {
40
  font-size: var(--sidebar-font-size);
41
  color: rgba(0, 0, 0, .7);
42
}
43

    
44
#sidebar_main .menu_section > ul > li > a:hover, #sidebar_main .menu_section > ul > li > ul > li > a:hover{
45
  color: var(--secondary-color);
46
}
47
#sidebar_main .menu_section > ul li.current_section > a, #sidebar_main .menu_section > ul li.current_section > ul > li.current_section > a  {
48
  color: var(--primary-color);
49
}
50

    
51
#sidebar_switcher_toggle {
52
  top: 320px !important;
53
  position: fixed;
54
  background: #ffffff;
55
  border: 1px solid var(--portal-dark-color);
56
  border-left: 0;
57
  cursor: pointer;
58
  padding: 0 4px;
59
  width: 10px;
60
  height: 66px;
61
  z-index: 981;
62
}
63

    
64
.sidebar_main_swipe #page_content {
65
  padding-left: var(--sidebar-width);
66
  padding-top: var(--header-height);
67
  transition: 0.5s;
68
}
69

    
70
/*Sidebar close*/
71
.sidebar_main_swipe:not(.sidebar_main_active):not(.sidebar_mini) #page_content {
72
  padding-left: 0;
73
  transition: 0.5s;
74
}
75

    
76
.sidebar_main_swipe:not(.sidebar_main_active):not(.sidebar_mini) #sidebar_main #sidebar_content {
77
  display: none;
78
  width: 0;
79
}
80

    
81
.sidebar_main_swipe:not(.sidebar_main_active):not(.sidebar_mini) #sidebar_switcher_toggle {
82
  left: 10px;
83
}
84

    
85
/*Sidebar mini*/
86
.sidebar_main_swipe.sidebar_mini #page_content {
87
  padding-left: var(--sidebar-mini-width);
88
  transition: 0.5s;
89
}
90

    
91
.sidebar_mini #sidebar_main #sidebar_content {
92
  width: var(--sidebar-mini-width);
93
}
94

    
95
#sidebar_main .menu_section > ul > li > a {
96
  display: block;
97
}
98

    
99
#sidebar_main #sidebar_content {
100
  border-right: 1px solid var(--portal-dark-color);
101
}
102

    
103
#page_content {
104
  min-height: calc(100vh - var(--header-height));
105
  background-color: var(--background-color);
106
}
107

    
108
#page_content_inner {
109
  padding: 90px;
110
}
111

    
112
navbar > * {
113
  background-color: var(--background-color);
114
}
(6-6/9)