1
0
www.mikescher.com/www/data/css/styles_admin.scss

64 lines
1.4 KiB
SCSS

@import 'styles_config';
.admincontent {
display: block;
width: 100%;
}
.admincontent .boxedcontent{
margin-bottom: 20px;
}
.egg_ajaxOutput {
display: flex;
box-sizing: border-box;
width: 100%;
align-self: center;
margin-left: auto;
margin-right: auto;
resize: none;
height: 300px;
}
.keyvaluelist {
display: flex;
flex-direction: column;
div {
display: flex;
flex-direction: row;
span {align-self: center;}
span:first-child {
font-weight: bold;
min-width: 500px;
align-self: start;
}
}
}
.kvl_100 div span:first-child { min-width: 100px; }
.kvl_200 div span:first-child { min-width: 200px; }
.kvl_300 div span:first-child { min-width: 300px; }
.consistency_result_ok, .consistency_result_warn, .consistency_result_err {
min-width: 400px;
color: $COL_ADMIN_STATUS_FG;
border: $COL_ADMIN_STATUS_BORDER;
padding: 0 5px;
margin: 1px 0;
}
.consistency_result_ok { background: $COL_ADMIN_OK; }
.consistency_result_warn { background: $COL_ADMIN_WARN; }
.consistency_result_err { background: $COL_ADMIN_ERROR; }
.admincontent .boxedcontent hr {
width: 95%;
height: 1px;
border: none;
color: $COL_TRANSPARENT;
background: -moz-radial-gradient( circle, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.0));
background: -webkit-radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%,rgba(0, 0, 0, 0.0) 100%);
}