Spaces:
Runtime error
Runtime error
File size: 4,024 Bytes
0467ec9 |
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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 |
.settings{
height:1rem;
}
div{
text-align: justify;
}
div[role="button"]{
font-size: 16px;
}
h6{
font-size: 14px;
}
h1{
text-align: center !important;
}
h4{
text-align: center !important;
}
table{
font-size: 0.8vw;
text-align: right !important;
}
.promptTextbox {
border: 2px solid #f3f3f3;
border-radius: 5px;
background-color: #f9f9f9;
box-shadow: 2px 2px 2px grey;
font-size: 11px;
margin: 0;
padding: 0;
}
.promptHeader {
padding: 10px !important;
background-color: #ececec;
border-bottom: 1px solid #ddd;
font-weight: bold;
font-size: 16px;
margin: 0;
padding: 0;
}
.promptContent {
padding: 20px;
}
.modelOutputBox {
border: 2px solid #c3e6cb;
border-radius: 5px;
background-color: #d4edda;
box-shadow: 2px 2px 2px #73c476;
font-size: 14px;
}
.modelOutputHeader {
padding: 10px;
background-color: #ececec;
border-bottom: 1px solid #73c476;
font-weight: bold;
font-size: 16px;
}
.modelOutputContent {
padding: 20px;
}
.st-bx {
padding: 10px;
background-color: #ececec;
border-bottom: 1px solid #ddd;
font-weight: bold;
font-size: 16px;
margin: 0;
padding: 0;
}
.lambda-header {
padding: 2px;
background-color: #d4edda;
font-weight: bold; /* make the text bold */
font-size: 16px;
width: 50px; /* reduce the width */
height: 30px; /* reduce the width */
box-shadow: 2px 2px 2px grey; /* same shadow as .lambdas */
text-align: center;
}
.lambdas {
padding: 10px;
background-color: #d4edda; /* same color as .lambda-header */
font-size: 16px;
box-shadow: 2px 2px 2px grey;
margin-bottom: 10px; /* creates space between this section and the next */
overflow: hidden; /* this will prevent text exceeding the height from being visible */
height: auto; /* adjust this to fit your text, accounting for padding and font size */
width: auto;
}
.imgContent {
display: flex;
justify-content: center;
padding: 20px;
}
.imgContainer {
display: flex;
flex-direction: column;
align-items: center;
width: 30%;
max-width: 30%;
margin: 10px;
}
.imglambda-header {
padding: 2px;
font-weight: bold; /* make the text bold */
font-size: 16px;
width: 50px; /* reduce the width */
height: 30px; /* reduce the width */
text-align: center;
}
.imglambdas {
padding: 10px;
background-color: #d4edda; /* same color as .lambda-header */
font-size: 16px;
box-shadow: 2px 2px 2px grey;
margin-bottom: 10px; /* creates space between this section and the next */
overflow: hidden; /* this will prevent text exceeding the height from being visible */
height: auto; /* adjust this to fit your text, accounting for padding and font size */
width: 100%;
max-width: 100%;
display: flex;
justify-content: center; /* Add this line to center the content horizontally */
align-items: center; /* Add this line to center the content vertically */
}
.imglambdas img {
max-height: 99%;
max-width: 99%; /* adjust to your preference */
}
div[data-testid='stHorizontalBlock'] {
display: flex;
align-items: center; /* this will vertically center the items */
padding: 0; /* removes padding */
margin: 0; /* removes margin */
}
div[data-testid='column'] {
justify-content: center; /* this will horizontally center the plot */
padding: 0; /* removes padding */
margin: 0; /* removes margin */
}
@keyframes typing {
from { width: 0; }
to { width: 100%; }
}
@keyframes blink-caret {
0%, 100% { border-color: transparent; }
50% { border-color: black; }
}
.typing-effect {
border-right: .15em solid black;
white-space: nowrap;
overflow: hidden;
margin: 0 auto;
animation: typing 2s steps(40, end), blink-caret 2.8s step-end;
}
.flex-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
|