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
|
body {
margin-top: 30px;
}
.logout {
display: none;
}
.jsxc-org {
display: none;
}
#content form .alert {
display: none;
}
#content h3 {
border-bottom: 1px solid #e5e5e5;
margin-bottom: 20px;
}
#content .col-md-4 .form {
min-height: 180px;
}
#content .row:first-child {
margin-bottom: 30px;
}
#content .col-md-4>p {
margin-bottom: 30px;
}
#server-flash {
margin: 0;
margin-top: 10px;
}
#server-flash:before {
content: "\e031";
position: relative;
top: 1px;
padding-right: 5px;
display: inline-block;
font-family: 'Glyphicons Halflings';
font-style: normal;
font-weight: 400;
line-height: 1;
-webkit-font-smoothing: antialiased;
}
#server-flash.success:before {
content: "\e089";
color: green;
}
#server-flash.fail:before {
content: "\e088";
color: red;
}
|