OCEANAI / app.css
ElenaRyumina's picture
Update app.css
3d3aa21 verified
raw history blame
No virus
1.79 kB
.noti_err {
color: #B42E2C;
}
.noti_true {
color: #006900;
}
div.video-container {
height: 350px;
max-height: 350px;
}
div.files-container {
height: 350px;
max-height: 350px;
}
.dataframe div.table-wrap {
height: auto !important;
}
div.files-container div.file-preview-holder {
overflow-y: scroll;
height: 100%;
}
div.files-container label[data-testid="block-label"] {
position: absolute;
}
.calculate_oceanai,
.calculate_practical_task {
display: inline-block;
padding: 10px 20px;
font-size: 16px;
font-weight: bold;
text-align: center;
text-decoration: none;
cursor: pointer;
border: var(--button-border-width) solid var(--button-primary-border-color);
background: var(--button-primary-background-fill);
color: var(--button-primary-text-color);
border-radius: 8px;
transition: all 0.3s ease;
}
.examples_oceanai, .clear_oceanai {
display: inline-block;
padding: 10px 20px;
font-size: 16px;
font-weight: bold;
text-align: center;
text-decoration: none;
cursor: pointer;
border-radius: 8px;
transition: all 0.3s ease;
}
.calculate_oceanai[disabled],
.calculate_practical_task[disabled],
.examples_oceanai[disabled],
.clear_oceanai[disabled] {
cursor: not-allowed;
opacity: 0.6;
}
.calculate_oceanai:hover:not([disabled]),
.calculate_practical_task:hover:not([disabled]) {
border-color: var(--button-primary-border-color-hover);
background: var(--button-primary-background-fill-hover);
color: var(--button-primary-text-color-hover);
}
.calculate_oceanai:active:not([disabled]),
.calculate_practical_task:active:not([disabled]),
.examples_oceanai:active:not([disabled]),
.clear_oceanai:active:not([disabled]) {
transform: scale(0.98);
}