2019-10-20 14:22:55 +02:00
|
|
|
@home_background: #222C32;
|
|
|
|
@background: white;
|
2019-06-06 23:54:32 +02:00
|
|
|
@success: #c7ffbc;
|
2019-10-20 14:22:55 +02:00
|
|
|
|
|
|
|
#__nuxt, #__layout {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#home {
|
|
|
|
background-color: @home_background;
|
|
|
|
min-height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
a, a:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2019-06-06 23:54:32 +02:00
|
|
|
|
2019-05-30 12:04:14 +02:00
|
|
|
html, body {
|
|
|
|
margin: 0px;
|
2019-10-20 14:22:55 +02:00
|
|
|
background-color: @background;
|
2019-05-30 12:04:14 +02:00
|
|
|
width: 100%;
|
2019-10-20 14:22:55 +02:00
|
|
|
height: 100%;
|
2019-05-30 12:04:14 +02:00
|
|
|
overflow-x: hidden;
|
|
|
|
box-sizing: border-box;
|
|
|
|
font-family: BlinkMacSystemFont,-apple-system,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,Helvetica,Arial,sans-serif !important;
|
2019-10-20 14:22:55 +02:00
|
|
|
font-size: 15px;
|
2019-05-30 12:04:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2019-06-06 23:54:32 +02:00
|
|
|
.el-form-item {
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
2019-10-20 14:22:55 +02:00
|
|
|
.el-main,
|
2019-06-06 23:54:32 +02:00
|
|
|
.el-card {
|
2019-10-20 14:22:55 +02:00
|
|
|
max-width: 1000px;
|
|
|
|
border-radius: 0px;
|
2019-10-22 01:12:36 +02:00
|
|
|
margin: 0 auto;
|
|
|
|
padding: 10px;
|
2019-07-29 14:10:18 +02:00
|
|
|
}
|
|
|
|
|
2019-05-30 12:04:14 +02:00
|
|
|
.el-dialog {
|
|
|
|
margin-top: 0px !important;
|
|
|
|
border-radius: 0px;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
.el-dialog__body {
|
|
|
|
word-break: break-word;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.el-select-dropdown {
|
|
|
|
max-width: 100%;
|
|
|
|
left: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-enter-active, .page-leave-active {
|
|
|
|
transition: opacity .2s, transform .3s;
|
|
|
|
}
|
|
|
|
.page-enter, .page-leave-active {
|
|
|
|
transition: opacity .3s, transform .2s;
|
|
|
|
opacity: 0;
|
2019-10-20 14:22:55 +02:00
|
|
|
transform: translateX(30px);
|
2019-05-30 12:04:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pre {
|
|
|
|
font-family: BlinkMacSystemFont,-apple-system,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,Helvetica,Arial,sans-serif !important;
|
|
|
|
margin-bottom: 0px;
|
|
|
|
white-space: pre-line;
|
|
|
|
font-family: unset;
|
|
|
|
}
|
|
|
|
|
|
|
|
.el-popover {
|
|
|
|
word-break: normal;
|
|
|
|
}
|
|
|
|
|
2019-06-09 00:45:50 +02:00
|
|
|
@media only screen and (max-width: 768px) {
|
2019-10-20 14:22:55 +02:00
|
|
|
html {
|
2019-10-22 01:12:36 +02:00
|
|
|
font-size: 13px;
|
2019-10-20 14:22:55 +02:00
|
|
|
}
|
|
|
|
|
2019-10-22 01:12:36 +02:00
|
|
|
.el-main {
|
2019-06-09 00:45:50 +02:00
|
|
|
margin-top: 0px !important;
|
|
|
|
border-radius: 0px;
|
2019-10-22 01:12:36 +02:00
|
|
|
padding: 5px;
|
2019-10-20 14:22:55 +02:00
|
|
|
}
|
|
|
|
|
2019-06-09 00:45:50 +02:00
|
|
|
.el-menu-item {
|
|
|
|
padding: 0px 17px;
|
2019-05-30 12:04:14 +02:00
|
|
|
}
|
|
|
|
}
|