-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (52 loc) · 1.24 KB
/
style.css
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
section[data-testid='stSidebar'] {
background-color: rgb(17, 17, 17);
min-width:unset !important;
width: unset !important;
flex-shrink: unset !important;
}
button[kind="header"] {
background-color: transparent;
color:rgb(160, 228, 209)
}
@media(hover){
/* header element to be removed */
header[data-testid="stHeader"] {
display:none;
}
/* The navigation menu specs and size */
section[data-testid='stSidebar'] > div {
height: 100%;
width: 95px;
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;
}
/* ON HOVER */
section[data-testid='stSidebar'] > div:hover{
width: 180px;
}
/* The button on the streamlit navigation menu - hidden */
button[kind="header"] {
display: none;
}
}
@media(max-width: 272px){
section[data-testid='stSidebar'] > div {
width:10em;
}
}
/* .css-1629p8f e16nr0p31{
display: flex;
} */
.block-container.css-18e3th9.egzxvld2 {
padding-top: 4%;
padding-bottom: 0.9%;
padding-right: 3%;
padding-left: 7%;
}