WebStudio/src/App.css

87 lines
1.2 KiB
CSS
Raw Normal View History

2019-11-12 12:21:05 +00:00
.App {
text-align: center;
}
.App-logo {
height: 40vmin;
}
.App-header {
background-color: #282c34;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: white;
}
.App-link {
color: #09d3ac;
}
2019-11-26 10:01:26 +00:00
.sp-container {
display: flex;
flex-direction: column;
height: 100%;
}
.sp {
flex: 1;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
}
.sp-col {
display: block;
flex: 1;
2020-03-16 23:34:19 +00:00
/*height: calc(100% - 60px);*/
2019-11-26 10:01:26 +00:00
overflow-y: scroll;
}
2020-03-16 23:34:19 +00:00
.sp-col-inner {
border: 1px solid black;
height: 90%;
}
2019-11-26 10:01:26 +00:00
.sp-track {
display: block;
/* overflow-x: hidden; */
/* height: 1.6em; */
margin: 0.2em 0;
/* overflow: hidden; */
/* height: 1.3em; */
cursor: pointer;
}
.sp-track:hover {
background-color: #78acf1;
}
2020-03-16 23:34:19 +00:00
.sp-track-active {
background-color: #10c998;
}
2019-11-26 10:01:26 +00:00
html, body, #root {
padding: 0;
margin: 0;
width: 100%;
height: 100%;
2019-11-26 13:00:15 +00:00
}
.react-contextmenu--visible {
background-color: white;
padding: 0.7em;
border: 1.5px solid grey;
box-shadow: 3px 3px 6px grey;
}
.react-contextmenu-item {
cursor: pointer;
}
.react-contextmenu-item--disabled {
cursor: not-allowed;
2019-11-26 10:01:26 +00:00
}