123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- @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%;
- }
-
- md-toolbar.md-table-toolbar.alternate .md-toolbar-tools {
- color: #1e88e5;
- font-size: 16px;
- background-color: #e3f2fd;
- }
-
- md-toolbar.md-table-toolbar form {
- width: 100%;
- }
-
- md-toolbar.md-table-toolbar form .md-errors-spacer {
- display: none;
- }
-
- /**
- ========================================================
- **/
-
-
- @font-face {
- font-family: 'Material Icons';
- font-style: normal;
- font-weight: 400;
- src: url(../fonts/MaterialIcons-Regular.eot); /* For IE6-8 */
- src: local('Material Icons'),
- local('MaterialIcons-Regular'),
- url(../fonts/MaterialIcons-Regular.woff2) format('woff2'),
- url(../fonts/MaterialIcons-Regular.woff) format('woff'),
- url(../fonts/MaterialIcons-Regular.ttf) format('truetype');
- }
-
- .material-icons {
- font-family: 'Material Icons';
- font-weight: normal;
- font-style: normal;
- font-size: 24px; /* Preferred icon size */
- display: inline-block;
- line-height: 1;
- text-transform: none;
- letter-spacing: normal;
- word-wrap: normal;
- white-space: nowrap;
- direction: ltr;
-
- /* Support for all WebKit browsers. */
- -webkit-font-smoothing: antialiased;
- /* Support for Safari and Chrome. */
- text-rendering: optimizeLegibility;
-
- /* Support for Firefox. */
- -moz-osx-font-smoothing: grayscale;
-
- /* Support for IE. */
- font-feature-settings: 'liga';
- }
|