File size: 2,241 Bytes
82bf89e |
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 |
/* section[data-testid="stSidebar"] div[data-testid="stSidebarContent"] {
overflow: hidden;
} */
section[data-testid="stSidebar"]
.block-container
> div[data-testid="stVerticalBlockBorderWrapper"]
> div {
height: 100vh;
}
section[data-testid="stSidebar"]
.block-container
> div[data-testid="stVerticalBlockBorderWrapper"]
> div
> div {
display: flex;
height: 100vh;
padding-bottom: 35px;
}
section[data-testid="stSidebar"]
.block-container
> div[data-testid="stVerticalBlockBorderWrapper"]
> div
> div
> div:nth-child(2) {
flex: 1;
order: 1;
overflow: overlay;
}
section[data-testid="stSidebar"]
.block-container
> div[data-testid="stVerticalBlockBorderWrapper"]
> div
> div
> div:nth-child(n + 3) {
order: 2;
flex-grow: 0;
}
section[data-testid="stSidebar"] > div > div:nth-child(2) {
padding-top: 0rem !important;
}
section.main > div {
padding-top: 0px;
}
.icon-text-container {
display: flex;
justify-content: center;
text-align: center;
align-items: center;
margin-bottom: 8px;
margin-top: 0px;
margin-left: -8px;
}
.icon-text-container img {
width: 60px;
height: 60px;
margin-right: 0;
}
.icon-text-container span {
text-align: center;
text-shadow: 1px 1px #ccc;
font-size: 28px !important;
font-family: "auto";
font-weight: 500 !important;
}
hr {
margin-top: 20px;
margin-bottom: 30px;
}
.avatar {
display: flex;
align-items: center;
gap: 10px;
pointer-events: none;
margin: -8px 10px -16px;
}
.avatar svg {
width: 30px;
height: 30px;
}
.avatar h2 {
font-size: 20px;
margin: 0;
}
.content-div {
padding: 5px 20px;
margin: 5px;
text-align: left;
border-radius: 10px;
border: none;
line-height: 1.6;
font-size: 17px;
}
.content-div.assistant p {
padding: 4px;
margin: 2px;
}
.content-div.user p {
padding: 4px;
margin: -5px 2px -3px;
}
div[data-testid="stForm"] {
border: none;
padding: 0;
}
button[kind="primaryFormSubmit"] {
border: none;
padding: 0;
}
div[data-testid="stForm"]
+ div[data-testid="stHorizontalBlock"]
div[data-baseweb="select"]
> div:nth-child(1) {
background-color: transparent;
justify-content: center;
font-weight: 300;
border-radius: 0.25rem;
margin: 0;
line-height: 1.4;
border: 1px solid rgba(49, 51, 63, 0.2);
} |