File size: 1,078 Bytes
0c536cc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | *[class="model-loading"][data-dash-is-loading="true"]::before{
content: "Loading model...";
display: inline-block;
color: red;
visibility: visible;
font-size: 16px;
/*transition-delay: 1s;
transition-property: font-size;
transition-duration: 200ms;*/
}
.completely-hidden{
display: none;
}
.hidden-but-reserve-space{
visibility: hidden;
}
#link{
text-decoration: underline;
cursor: pointer;
}
.header-container {
border-bottom: thin lightgrey solid;
box-sizing: border-box;
white-space: nowrap;
overflow-y: auto;
}
.header-control-container {
margin-left: 20px;
margin-right: 20px;
}
body {
margin: 0;
padding: 0;
font-family: 'BundledDejavuSans';
font-size: 14px;
-moz-user-select: none;
}
@font-face {
font-family: 'BundledDejavuSansMono';
src: url('DejavuSansMono-5m7L.ttf');
}
@font-face {
font-family: 'BundledDejavuSans';
src: url('DejaVuSans.ttf');
}
@font-face {
font-family: 'BundledDejavuSans';
src: url('DejaVuSans-Bold.ttf');
font-weight: bold;
}
|