122 lines
1.9 KiB
CSS
Raw Normal View History

2022-02-20 21:25:18 -08:00
/********************************************************************************/
/* Header & Toolbar Styles */
/********************************************************************************/
html {
2022-07-09 20:56:01 -07:00
/* avoid bootstrap overriding font-size and breaking Mui */
font-size: initial;
2022-02-20 21:25:18 -08:00
}
body {
2022-07-14 14:49:59 -03:00
width: 100vw;
height: 100vh;
min-width: 100vw;
min-height: 100vh;
2022-07-09 20:56:01 -07:00
margin: 0px;
}
.mindplot-root {
2022-07-09 20:56:01 -07:00
width: 100%;
height: 100%;
}
2022-02-20 21:25:18 -08:00
.panelIcon {
2022-07-09 20:56:01 -07:00
width: 20px;
height: 20px;
margin-left: 4px;
margin-top: 3px;
cursor: pointer;
2022-02-20 21:25:18 -08:00
}
.panelIcon:hover {
2022-07-09 20:56:01 -07:00
background-color: #efefef;
2022-02-20 21:25:18 -08:00
}
2022-03-02 22:25:51 +00:00
.wise-editor .popover {
2022-07-09 20:56:01 -07:00
font-size: 13px;
max-width: none;
2022-02-20 21:25:18 -08:00
}
#keyboardTable {
2022-07-09 20:56:01 -07:00
font-size: 13px;
width: 100%;
2022-02-20 21:25:18 -08:00
}
#keyboardTable td {
2022-07-09 20:56:01 -07:00
padding: 3px;
white-space: nowrap;
2022-02-20 21:25:18 -08:00
}
#keyboardTable th {
2022-07-09 20:56:01 -07:00
padding: 5px;
white-space: nowrap;
2022-02-20 21:25:18 -08:00
}
#keyboardTable th {
2022-07-09 20:56:01 -07:00
background-color: #000000;
color: #ffffff;
2022-02-20 21:25:18 -08:00
}
.tryInfoPanel {
2022-07-09 20:56:01 -07:00
position: absolute;
text-align: center;
left: 0;
right: 0;
background-color: white;
border: solid 2px #ffa800;
margin: auto;
border-radius: 9px;
2022-10-06 22:56:22 -07:00
width: 80%;
}
@media (min-width: 600px) {
2022-07-09 20:56:01 -07:00
.tryInfoPanel {
font-size: 15px;
}
}
@media (max-width: 600px) {
2022-07-09 20:56:01 -07:00
.tryInfoPanel {
font-size: 13px;
}
}
.tryInfoPanel .tryInfoPanelInner {
2022-07-09 20:56:01 -07:00
padding-top: 10px;
padding-bottom: 10px;
padding-left: 5px;
padding-right: 5px;
}
2022-07-09 20:56:01 -07:00
.tryInfoPanel .tryInfoPanelInner .closeButton {
position: absolute;
top: 5px;
right: 5px;
}
.tryInfoPanel .tryInfoPanelInner .closeButton button {
2022-07-09 20:56:01 -07:00
cursor: pointer;
border-style: hidden;
background-color: transparent;
padding: 0px;
}
.tryInfoPanel .tryInfoPanelInner .closeButton button img {
2022-07-09 20:56:01 -07:00
width: 18px;
height: 18px;
filter: invert(73%) sepia(21%) saturate(4699%) hue-rotate(357deg) brightness(98%) contrast(108%);
}
.tryInfoPanelWithToolbar {
2022-10-06 22:56:22 -07:00
top: 75px;
}
.tryInfoPanelWithoutToolbar {
2022-07-09 20:56:01 -07:00
top: 5px;
}
.tryInfoPanelClosed {
2022-07-09 20:56:01 -07:00
display: none;
2022-02-20 21:25:18 -08:00
}
.tryInfoPanel>p {
2022-07-09 20:56:01 -07:00
justify-content: center;
}