173 lines
2.8 KiB
CSS
173 lines
2.8 KiB
CSS
|
/* cfb-editor (C) 2017-present SheetJS -- http://sheetjs.com */
|
||
|
html, body, #app {
|
||
|
height: 100%;
|
||
|
}
|
||
|
html {
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
overflow: auto;
|
||
|
background-color: #ffffff;
|
||
|
color: #000000;
|
||
|
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
cursor: pointer;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
/* cfb-editor (C) 2017-present SheetJS -- http://sheetjs.com */
|
||
|
.Outer {
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
display: block;
|
||
|
}
|
||
|
|
||
|
.Bottom {
|
||
|
height: calc(100% - 55px);
|
||
|
}
|
||
|
.RightPane {
|
||
|
height: calc(100vh - 55px);
|
||
|
overflow-y: auto;
|
||
|
}
|
||
|
/* cfb-editor (C) 2017-present SheetJS -- http://sheetjs.com */
|
||
|
.ToolBar {
|
||
|
height: 55px;
|
||
|
line-height: 55px;
|
||
|
margin-top: 0px;
|
||
|
margin-bottom: 0px;
|
||
|
padding: 0px 20px;
|
||
|
/* display: flex;
|
||
|
position: relative;
|
||
|
justify-content: space-between;
|
||
|
align-items: center;
|
||
|
flex: 0 0 55px;
|
||
|
box-sizing: border-box;
|
||
|
border-bottom: 1px solid #000000;
|
||
|
width: 100%;*/
|
||
|
}
|
||
|
|
||
|
.ToolBar {
|
||
|
margin-top: 0px;
|
||
|
margin-bottom: 0px;
|
||
|
display: -webkit-box;
|
||
|
display: -ms-flexbox;
|
||
|
display: flex;
|
||
|
-webkit-box-orient: horizontal;
|
||
|
-webkit-box-direction: normal;
|
||
|
-ms-flex-direction: row;
|
||
|
flex-direction: row;
|
||
|
-webkit-box-pack: justify;
|
||
|
-ms-flex-pack: justify;
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
|
||
|
.Logo {
|
||
|
vertical-align: middle;
|
||
|
}
|
||
|
|
||
|
.TitleIcons {
|
||
|
font-size: 24px;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
.TitleIcons > div {
|
||
|
padding: 0px 10px;
|
||
|
}
|
||
|
|
||
|
.TitleFile {
|
||
|
font-size: 18px;
|
||
|
}
|
||
|
|
||
|
.TitleName {
|
||
|
font-size: 18px;
|
||
|
font-weight: bold;
|
||
|
display: -webkit-box;
|
||
|
display: -ms-flexbox;
|
||
|
display: flex;
|
||
|
-webkit-box-pack: justify;
|
||
|
-ms-flex-pack: justify;
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
|
||
|
.AlignLeft {
|
||
|
float:left;
|
||
|
}
|
||
|
|
||
|
.AlignRight {
|
||
|
float:right;
|
||
|
}
|
||
|
|
||
|
.AlignCenter {
|
||
|
margin: 0 auto;
|
||
|
}
|
||
|
|
||
|
a { color: #0000EE; }
|
||
|
|
||
|
.Spinner {
|
||
|
height: 30px;
|
||
|
}
|
||
|
/* cfb-editor (C) 2017-present SheetJS -- http://sheetjs.com */
|
||
|
.tree {
|
||
|
padding: 0px 20px;
|
||
|
overflow-x: hidden;
|
||
|
overflow-y: auto;
|
||
|
white-space: pre;
|
||
|
height: calc(100vh - 55px);
|
||
|
}
|
||
|
.tree ul {
|
||
|
padding: 0px;
|
||
|
}
|
||
|
.tree li {
|
||
|
list-style-type:none;
|
||
|
margin:0;
|
||
|
position:relative;
|
||
|
font-size: 12px;
|
||
|
}
|
||
|
.tree a {
|
||
|
padding:10px 5px 0 0px;
|
||
|
display:block;
|
||
|
}
|
||
|
/* cfb-editor (C) 2017-present SheetJS -- http://sheetjs.com */
|
||
|
.conpainer {
|
||
|
overflow-x: hidden;
|
||
|
overflow-y: auto;
|
||
|
height: 100%;
|
||
|
padding: 0px 20px;
|
||
|
}
|
||
|
|
||
|
.flexrow {
|
||
|
display: -webkit-box;
|
||
|
display: -ms-flexbox;
|
||
|
display: flex;
|
||
|
-webkit-box-orient: horizontal;
|
||
|
-webkit-box-direction: normal;
|
||
|
-ms-flex-direction: row;
|
||
|
flex-direction: row;
|
||
|
-webkit-box-pack: justify;
|
||
|
-ms-flex-pack: justify;
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
.minor {
|
||
|
font-size: 10px;
|
||
|
color: #868e96;
|
||
|
}
|
||
|
|
||
|
.Title {
|
||
|
font-size: 24px;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
.Subtitle {
|
||
|
font-style: italic;
|
||
|
}
|
||
|
.helpview {
|
||
|
padding-left: 20px;
|
||
|
padding-right: 20px;
|
||
|
}
|
||
|
|
||
|
/*# sourceMappingURL=app.bdcabfb2.css.map*/
|