123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- /*.kourtina{
- z-index: 2;
- height: 100vh;
- position: fixed;
- top: 0;
- width: 100%;
- }*/
- * {
- font-family: thin;
- }
- .main {
- flex-direction: column;
- width: 100vw;
- height: 100vh;
- overflow: hidden;
- background-color:#dfdfdf;
- display: flex;
- }
- .mainbar{
- z-index: 1;
- display: flex;
- justify-content: space-between;
- 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;
- flex-basis: 100%;
- }
- .horizontal_bars .toolbox{
- background: #F1F1F1;
- z-index: 1;
- flex-shrink: 0;
- 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-top: 10px;
- padding-bottom: 10px;
- padding-left:20px;
- width: 258px;
- overflow: auto;
- }
- .horizontal_bars .sidebar{
- width: 311px;
- z-index: 1;
- flex-shrink: 0;
- background: #F1F1F1 0% 0% no-repeat padding-box;
- opacity: 1;
- overflow: auto;
- }
- body {
- background: #dfdfdf;
- }
- .playground{
- background-color:#dfdfdf;
- }
- .phone{
- margin:0 auto;
- overflow-x: hidden;
- overflow-y: hidden;
- }
- .horizontal_bars .wrapper {
- display: flex;
- flex-direction: column;
- flex-grow: 1;
- }
- .horizontal_bars .wrapperPhone {
- display: flex;
- flex-direction: row;
- flex-grow: 1;
- position: relative;
- min-height: 0;
- }
- .horizontal_bars .wrapper .sidebar{
- width: 311px;
- z-index: 1;
- align-self: flex-end;
- height: 100%;
- background: #F1F1F1;
- opacity: 1;
- }
- .horizontal_bars .wrapper .pageNav{
- background-color: white;
- height: 48px;
- background: #F8F8F8 0% 0% no-repeat;
- box-shadow: 0px 2px 6px #00000029;
- opacity: 1;
- z-index: 100;
- }
|