Spaces:
Sleeping
Sleeping
File size: 1,205 Bytes
c3057bf 1edb596 c3057bf 1edb596 c3057bf 1edb596 c3057bf cb081db c3057bf |
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 |
/* style.css */
.gradio-container {
width: 100% !important;
max-width: none !important;
}
#navbar {
position: fixed;
left: -190px;
top: 0;
width: 200px;
height: 100%;
background-color: #444;
transition: left 0.3s ease;
padding: 10px;
box-shadow: 2px 0 5px rgba(35, 21, 21, 0.5);
z-index: 1000;
}
#navbar:hover {
left: 0;
}
.navbar-button {
background-color: #D3D3D3;
color: #fff;
margin-bottom: 10px;
width: 100%;
}
.footer {
text-align: center;
padding: 10px;
background-color: #ffffff;
margin-top: 20px;
}
#header {
text-align: center;
font-size: 1.8em;
font-weight: bold;
margin-top: 20px;
}
#text_block {
margin-left: 150px;
margin-right: 150px;
max-width: calc(100% - 300px);
box-sizing: border-box;
overflow-x: hidden;
color: black;
word-wrap: break-word;
}
#llm_output {
width: 100%;
box-sizing: border-box;
padding: 10px;
}
#clickable_markdown {
position: relative;
color: black;
cursor: pointer;
}
#invisible_button {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
cursor: pointer;
}
|