12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- /*.kourtina{
- z-index: 2;
- height: 100vh;
- position: fixed;
- top: 0;
- width: 100%;
- }*/
- .mainbar{
- z-index: 1;
- display: flex;
- justify-content: space-between;
- height: 48px;
- background: #F1F1F1;
- top: 0;
- width: 100%;
- border-bottom: 1px solid rgb(0, 0, 0,0.16);
- opacity: 1;
- }
- .horizontal_bars {
- display: flex;
- flex-direction: row;
- justify-content:space-between;
- }
- .horizontal_bars .toolbox{
- background: #F1F1F1;
- z-index: 1;
- flex-shrink: 0;
- position: absolute;
- height: calc(100vh - 15px);
- display: flex;
- flex-direction: row;
- }
- .horizontal_bars .toolbox .tool_icon_bar{
- width: 48px;
- background: #F1F1F1 0% 0% no-repeat padding-box;
- box-shadow: 1px 0px 1px rgb(0, 0, 0,0.16);
- }
- .horizontal_bars .toolbox .moduleBar{
- padding: 10px;
- overflow-y: scroll;
- overflow-x: hidden;
- }
- .horizontal_bars .sidebar{
- width: 311px;
- z-index: 1;
- flex-shrink: 0;
- position: absolute;
- right: 0;
- height: calc(100vh - 50px);
- background: #F1F1F1 0% 0% no-repeat padding-box;
- opacity: 1;
- overflow: scroll;
- }
- .playground{
- background-color:#dfdfdf;
- margin-top: 0px;
- height: calc(100vh - 5px);
- display: flex;
- flex-direction: column;
- }
- .phone{
- margin:0 auto;
- overflow-x: hidden;
- overflow-y: hidden;
- }
- .pageNav{
- background-color: white;
- margin-bottom: 10px;
- margin-left:285px;
- height: 47px;
- background: #F8F8F8 0% 0% no-repeat;
- width:100%;
- box-shadow: 0px 1px 0px 0px #F8F8F8;
- opacity: 1;
- }
|