SeaEval_Leaderboard / style /sidebar_style.css
zhuohan-7's picture
Upload folder using huggingface_hub
3119b1f verified
raw
history blame
1.66 kB
/* from streamlit-on-Hover-tabs package */
section[data-testid='stSidebar'] {
background-color: #111;
flex-shrink: unset !important;
}
@media(hover:hover) and (min-width: 600px) and (max-width: 769px){
header[data-testid="stHeader"] {
display:none;
}
section[data-testid='stSidebar'] {
height: 100%;
min-width:95px !important;
width: 95px !important;
margin-left: 305px;
position: relative;
z-index: 1;
top: 0;
left: 0;
background-color: #111;
overflow-x: hidden;
transition: 0.5s ease;
padding-top: 60px;
white-space: nowrap;
}
section[data-testid='stSidebar']:hover{
min-width: 330px !important;
}
button[kind="header"] {
display: none;
}
div[data-testid="collapsedControl"]{
display: none;
}
}
@media(hover: hover) and (min-width: 769px){
header[data-testid="stHeader"] {
display:none;
font-size: 12px;
}
section[data-testid='stSidebar'] {
height: 100%;
min-width:95px !important;
width: 95px !important;
transform:translateX(0px);
position: relative;
z-index: 1;
top: 0;
left: 0;
background-color: #111;
overflow-x: hidden;
transition: 0.5s ease;
padding-top: 60px;
white-space: nowrap;
}
section[data-testid='stSidebar']:hover{
min-width: 330px !important;
}
button[kind="header"] {
display: none;
}
div[data-testid="collapsedControl"]{
display: none;
}
}