gancio/assets/style.less

82 lines
1.5 KiB
Text
Raw Normal View History

2019-06-06 23:54:32 +02:00
@background: #222C32;
@success: #c7ffbc;
// @info
2019-05-30 12:04:14 +02:00
html, body {
margin: 0px;
2019-06-06 23:54:32 +02:00
background-color: @background !important;
2019-05-30 12:04:14 +02:00
width: 100%;
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;
}
* {
box-sizing: border-box;
}
2019-06-06 23:54:32 +02:00
.el-form-item {
margin-bottom: 5px;
}
2019-06-09 00:45:50 +02:00
// .el-divider__text {
// background-color: @background;
// color: white;
// border-radius: 5px;
// }
2019-06-06 23:54:32 +02:00
.el-card {
2019-09-07 11:57:54 +02:00
max-width: 660px;
2019-06-06 23:54:32 +02:00
margin: 30px auto;
}
2019-07-29 14:10:18 +02:00
#admin.el-card {
2019-07-29 22:40:27 +02:00
max-width: 870px;
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;
// transform: translateY(30px);
}
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) {
.el-card {
margin-top: 0px !important;
border-radius: 0px;
padding: 0px;
}
.el-menu-item {
padding: 0px 17px;
2019-05-30 12:04:14 +02:00
}
}