-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.css
175 lines (145 loc) ยท 3.54 KB
/
index.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
body {
margin: 0;
font-family: 'Montserrat', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
#sidebar .closemenu {
color: #6ac7fc;
position: absolute;
right: 0;
z-index: 9999;
line-height: 20px;
border-radius: 50%;
font-weight: bold;
font-size: 30px;
top: 55px;
cursor: pointer;
}
#sidebar .pro-sidebar {
width: 240px;
min-width: 100%;
height: 100vh;
}
#sidebar .pro-sidebar.collapsed {
width: 85px;
min-width: 85px;
}
#sidebar .pro-sidebar-inner {
background: #0e1025;
box-shadow: 0.5px 0.866px 2px 0px rgba(0, 0, 0, 0.15);
}
.pro-sidebar > .pro-sidebar-inner > img.sidebar-bg {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
position: absolute;
opacity: 0.3;
left: 0;
top: 0;
z-index: 100;
filter: blur(10px);
}
#sidebar .pro-sidebar-inner .pro-sidebar-layout {
overflow-y: hidden;
height: 100vh;
}
#sidebar .pro-sidebar-inner .pro-sidebar-layout .logotext p {
font-size: 20px;
padding: 0 20px;
color: rgba(252, 252, 252, 0.521);
font-weight: bold;
}
#sidebar .pro-sidebar-inner .pro-sidebar-layout ul {
padding: 0 5px;
}
#sidebar .pro-sidebar-inner .pro-sidebar-layout ul .pro-inner-item {
color: rgb(230, 230, 230);
margin: 10px 0px;
font-weight: bold;
}
#sidebar .pro-sidebar-inner .pro-sidebar-layout ul .pro-inner-item:hover {
background-color: rgba(0, 0, 0, 0.2);
border-radius: 5px;
opacity: 1;
}
#sidebar .pro-sidebar-inner .pro-sidebar-layout ul .pro-inner-item .pro-icon-wrapper {
background-color: #c0c0c0;
color: #000;
border-radius: 3px;
}
#sidebar .pro-sidebar-inner .pro-sidebar-layout ul .pro-inner-item .pro-icon-wrapper .pro-item-content {
color: #000;
}
#sidebar .logo {
padding: 20px;
}
.pro-sidebar > .pro-sidebar-inner > .pro-sidebar-layout .pro-sidebar-header {
display: flex;
padding: 15px 15px;
}
#sidebar .pro-sidebar-inner .pro-sidebar-layout ul .pro-inner-item .pro-icon-wrapper {
background-color: transparent;
color: #6ac7fc;
border-radius: 50%;
box-shadow: 0px 0px 5px #6ac7fc, 0px 0px 10px #6ac7fc;
}
.pro-menu-item.active {
background-color: rgba(0, 0, 0, 0.4);
border-radius: 5px;
opacity: 1;
}
.pro-sidebar-content {
overflow: auto;
}
.pro-sidebar .pro-menu > ul > .pro-sub-menu > .pro-inner-list-item {
background-color: transparent !important;
}
@media only screen and (max-width: 720px) {
html {
overflow: hidden;
}
}
/* .pro-sub-menu.open {
background-color: rgba(0, 0, 0, 0.5);
border-radius: 5px;
opacity: 0.8;
} */
.pro-sub-menu.open > .pro-inner-item {
background-color: rgba(0, 0, 0, 0.2);
border-radius: 5px;
opacity: 1;
}
.popper-inner {
background-color: #0e1025 !important;
}
.ant-table-thead > tr > th {
color: white;
background: #353f68;
border-color: #0e1025;
}
.anticon svg {
color: white;
}
.ant-table-tbody > tr > td {
color: white;
background: #151939ff !important;
border-color: #0e1025;
}
.ant-table {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
border-radius: 10px;
}
.ant-table-tbody > tr:last-child td:first-child {
border-bottom-left-radius: 5px;
}
.ant-table-tbody > tr:last-child td:last-child {
border-bottom-right-radius: 5px;
}
.ant-table-thead > tr:last-child td:first-child {
border-bottom-left-radius: 5px;
}
.ant-table-thead > tr:last-child td:last-child {
border-bottom-right-radius: 5px;
}