123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- @media screen and (min-width: 1280px) {
- .md-main-content {
- margin-left: 10px;
- }
- }
-
- .md-ui-content {
- padding-top: 10px;
- padding-left: 10px;
- }
-
- .text-center() {
- text-align: center;
- }
-
- .border-radius(@radius) {
- -webkit-border-radius: @radius;
- -moz-border-radius: @radius;
- border-radius: @radius;
- }
-
- .no-text-select {
- -webkit-touch-callout: none;
- -webkit-user-select: none;
- -khtml-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- }
-
-
- .isa_info, .isa_success, .isa_warning, .isa_error {
- margin: 10px 0px;
- padding:12px;
- }
- .isa_info {
- color: #00529B;
- background-color: #BDE5F8;
- }
- .isa_success {
- color: #4F8A10;
- background-color: #DFF2BF;
- }
- .isa_warning {
- color: #9F6000;
- background-color: #FEEFB3;
- }
- .isa_error {
- color: #D8000C;
- background-color: #FFBABA;
- }
- .isa_info i, .isa_success i, .isa_warning i, .isa_error i {
- margin:10px 22px;
- font-size:2em;
- vertical-align:middle;
- }
-
- md-sidenav {
- height: 100%;
- }
-
- .md-content-nav {
- overflow-x: hidden;
- height: 100%;
- }
-
- /**
- ========================================================
- **/
|