Warning, /firebird/firebird-ng/src/app/pages/split-window/split-window.component.scss is written in an unsupported language. File is not indexed.
0001 body {
0002 margin: 40px;
0003 }
0004
0005 .wrapper {
0006 background-color: #fff;
0007 color: #444;
0008 /* Use flexbox */
0009 display: flex;
0010 }
0011
0012 .box {
0013 background-color: #444;
0014 color: #fff;
0015 border-radius: 5px;
0016 padding: 20px;
0017 font-size: 150%;
0018
0019 /* Use box-sizing so that element's outerwidth will match width property */
0020 box-sizing: border-box;
0021
0022 /* Allow box to grow and shrink, and ensure they are all equally sized */
0023 flex: 1 1 auto;
0024 }
0025
0026 .handler {
0027 width: 20px;
0028 padding: 0;
0029 cursor: ew-resize;
0030 flex: 0 0 auto;
0031 }
0032
0033 .handler::before {
0034 content: '';
0035 display: block;
0036 width: 4px;
0037 height: 100%;
0038 background: red;
0039 margin: 0 auto;
0040 }