123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- .editor-body {
- display: flex;
- flex-direction: row;
- }
- @font-face {
- font-family: 'Material Icons';
- font-style: normal;
- font-weight: 400;
- src: url(./mdc/iconfont/MaterialIcons-Regular.eot); /* For IE6-8 */
- src: local('Material Icons'),
- local('MaterialIcons-Regular'),
- url(./mdc/iconfont/MaterialIcons-Regular.woff2) format('woff2'),
- url(./mdc/iconfont/MaterialIcons-Regular.woff) format('woff'),
- url(./mdc/iconfont/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';
- }
- /*
- .mdc-persistent-drawer--open {
- width: 300px;
-
- }
- .mdc-persistent-drawer__drawer {
- width: 300px;
- }
- */
- .mdc-theme--accent {
- color: #2E7D32;
- }
- .draggable {
- top: 200px;
- left: 400px;
- z-index: 4;
- background-color: rgba(255, 255, 255, 1);
- }
-
- .draggable.is-pointer-down {
- background: #999FA4;
- }
- .draggable.is-dragging { opacity: 0.9; }
-
- .handle {
- background: #555;
- background: rgba(132, 141, 132, 0.80);
- width: 100%;
- }
- .propGrid.max-width {
- max-width: 400px;
- }
- .codeEditorGrid{
- width: 1000px;
- height: 500px;
- }
- .codeEditorGrid.max-width {
- max-width: 1200px;
- }
- .aceEditor {
- width:inherit; height: 400px
- }
|