2022-08-31 23:26:58 +08:00
|
|
|
/* stylelint-disable at-rule-name-case */
|
|
|
|
/* stylelint-disable selector-class-pattern */
|
2020-10-20 22:06:49 +08:00
|
|
|
|
2022-08-31 23:26:58 +08:00
|
|
|
@StaticBaseUrl: "https://cdn.casbin.org";
|
2022-08-15 09:18:21 +08:00
|
|
|
|
2020-10-20 21:46:44 +08:00
|
|
|
.App {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.App-logo {
|
|
|
|
height: 40vmin;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.App-header {
|
|
|
|
min-height: 100vh;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
font-size: calc(10px + 2vmin);
|
|
|
|
}
|
|
|
|
|
|
|
|
.App-link {
|
|
|
|
color: #61dafb;
|
|
|
|
}
|
|
|
|
|
2022-12-04 23:05:30 +08:00
|
|
|
img {
|
|
|
|
border-style: none;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2022-12-06 00:50:17 +08:00
|
|
|
#root {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2020-10-20 22:37:38 +08:00
|
|
|
#parent-area {
|
2022-09-20 23:06:24 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 100%;
|
2020-10-20 22:37:38 +08:00
|
|
|
min-height: 100vh;
|
|
|
|
}
|
|
|
|
|
2022-12-06 00:50:17 +08:00
|
|
|
.panel-logo {
|
|
|
|
margin-bottom: 30px;
|
2020-10-20 21:46:44 +08:00
|
|
|
}
|
2021-07-16 20:24:55 +08:00
|
|
|
|
2022-10-03 22:45:36 +08:00
|
|
|
.language-box {
|
2022-08-15 09:18:21 +08:00
|
|
|
background: url("@{StaticBaseUrl}/img/muti_language.svg");
|
2021-07-16 20:24:55 +08:00
|
|
|
background-size: 25px, 25px;
|
2021-07-23 09:46:01 +08:00
|
|
|
background-position: center;
|
2021-10-09 21:16:12 +08:00
|
|
|
background-repeat: no-repeat;
|
2022-10-03 18:45:35 +08:00
|
|
|
border-radius: 5px;
|
2021-07-23 09:46:01 +08:00
|
|
|
width: 45px;
|
2022-12-29 15:30:37 +01:00
|
|
|
height: 100%;
|
2021-07-16 20:24:55 +08:00
|
|
|
float: right;
|
|
|
|
cursor: pointer;
|
2021-10-09 21:16:12 +08:00
|
|
|
|
2021-07-16 20:24:55 +08:00
|
|
|
&:hover {
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-29 15:30:37 +01:00
|
|
|
.login-form .language-box {
|
|
|
|
height: 65px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme-box {
|
|
|
|
background: url("@{StaticBaseUrl}/img/muti_language.svg");
|
|
|
|
background-size: 25px, 25px;
|
|
|
|
background-position: center !important;
|
|
|
|
background-repeat: no-repeat !important;
|
|
|
|
border-radius: 5px;
|
|
|
|
width: 45px;
|
|
|
|
height: 100%;
|
|
|
|
float: right;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: #f5f5f5 !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-09 21:16:12 +08:00
|
|
|
.rightDropDown {
|
2022-12-29 15:30:37 +01:00
|
|
|
border-radius: 7px;
|
|
|
|
|
2021-07-16 20:24:55 +08:00
|
|
|
&:hover {
|
|
|
|
background-color: #f5f5f5;
|
2022-12-29 15:30:37 +01:00
|
|
|
color: black;
|
2021-07-16 20:24:55 +08:00
|
|
|
}
|
|
|
|
}
|
2021-07-23 09:46:01 +08:00
|
|
|
|
2021-10-09 21:16:12 +08:00
|
|
|
.content-warp-card {
|
2022-08-31 23:26:58 +08:00
|
|
|
box-shadow: 0 1px 5px 0 rgb(51 51 51 / 14%);
|
|
|
|
margin: 5px;
|
2021-10-09 21:16:12 +08:00
|
|
|
flex: 1;
|
2021-07-23 09:46:01 +08:00
|
|
|
align-items: stretch;
|
|
|
|
}
|
2022-09-10 00:56:37 +08:00
|
|
|
|
2022-10-22 21:43:41 +08:00
|
|
|
.side-image {
|
|
|
|
display: none;
|
2022-10-23 01:27:01 +08:00
|
|
|
|
|
|
|
@media screen and (min-width: 1100px) {
|
2022-10-22 21:43:41 +08:00
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
width: 500px;
|
2022-10-23 01:27:01 +08:00
|
|
|
border-right: 0.5px solid rgb(196 203 215);
|
2022-10-22 21:43:41 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-23 01:27:01 +08:00
|
|
|
.forget-content {
|
2022-10-22 21:43:41 +08:00
|
|
|
padding: 10px 100px 20px;
|
2022-12-06 00:50:17 +08:00
|
|
|
margin: 30px auto;
|
2022-10-23 01:27:01 +08:00
|
|
|
border: 2px solid #fff;
|
2022-10-22 21:43:41 +08:00
|
|
|
border-radius: 7px;
|
2022-10-23 01:27:01 +08:00
|
|
|
background-color: rgb(255 255 255);
|
|
|
|
box-shadow: 0 0 20px rgb(0 0 0 / 20%);
|
2022-10-22 21:43:41 +08:00
|
|
|
}
|
|
|
|
|
2022-10-23 01:27:01 +08:00
|
|
|
.login-panel {
|
2022-10-22 21:43:41 +08:00
|
|
|
margin-top: 50px;
|
|
|
|
margin-bottom: 50px;
|
|
|
|
display: flex;
|
2022-10-23 01:27:01 +08:00
|
|
|
background-color: rgb(255 255 255);
|
2022-10-22 21:43:41 +08:00
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2022-10-23 01:27:01 +08:00
|
|
|
.login-form {
|
2022-10-22 21:43:41 +08:00
|
|
|
text-align: center;
|
2022-11-13 03:52:22 +01:00
|
|
|
padding: 30px;
|
2022-10-22 21:43:41 +08:00
|
|
|
}
|
|
|
|
|
2022-10-03 22:45:36 +08:00
|
|
|
.login-content {
|
2022-10-03 22:40:19 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin: 0 auto;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2022-09-10 00:56:37 +08:00
|
|
|
.loginBackground {
|
2022-12-06 00:50:17 +08:00
|
|
|
flex: auto;
|
2022-10-22 21:43:41 +08:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2022-10-03 18:45:35 +08:00
|
|
|
background: #fff no-repeat;
|
2022-09-10 00:56:37 +08:00
|
|
|
background-size: 100% 100%;
|
2022-09-20 23:06:24 +08:00
|
|
|
background-attachment: fixed;
|
2022-09-10 00:56:37 +08:00
|
|
|
}
|
2022-12-29 15:30:37 +01:00
|
|
|
|
|
|
|
.ant-menu-horizontal {
|
|
|
|
border-bottom: none !important;
|
|
|
|
margin-right: 30px;
|
|
|
|
right: 230px;
|
|
|
|
}
|