67 lines
1.1 KiB
CSS
67 lines
1.1 KiB
CSS
|
/* Middle section */
|
||
|
#middle_section {
|
||
|
background-color: var(--main-background);
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
min-width: 10px;
|
||
|
}
|
||
|
|
||
|
/* Center section */
|
||
|
#search>#searchbar {
|
||
|
width: calc(100% - 32px);
|
||
|
height: 32px;
|
||
|
padding: 0px 8px;
|
||
|
margin: 8px;
|
||
|
border: 0px;
|
||
|
border-radius: 6px;
|
||
|
background-color: var(--secondary-background);
|
||
|
color: var(--primary-text)
|
||
|
}
|
||
|
|
||
|
#content {
|
||
|
background-color: var(--main-background);
|
||
|
width: calc(100% - 10px);
|
||
|
height: calc(100% - 48px);
|
||
|
overflow-y: scroll;
|
||
|
overflow-x: hidden;
|
||
|
padding-left: 10px
|
||
|
}
|
||
|
|
||
|
#content::-webkit-scrollbar {
|
||
|
width: 10px;
|
||
|
}
|
||
|
|
||
|
#content::-webkit-scrollbar-track {
|
||
|
background: var(--main-background);
|
||
|
}
|
||
|
|
||
|
#content::-webkit-scrollbar-thumb {
|
||
|
background: var(--main-scroll);
|
||
|
border-radius: 4px;
|
||
|
width: 6px;
|
||
|
padding: 0px 2px;
|
||
|
}
|
||
|
|
||
|
#container {
|
||
|
margin: 0 auto;
|
||
|
max-width: 1280px;
|
||
|
width: 90%;
|
||
|
}
|
||
|
|
||
|
@media only screen and (min-width: 601px) {
|
||
|
#container {
|
||
|
width: 85%;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media only screen and (min-width: 993px) {
|
||
|
#container {
|
||
|
width: 70%;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media only screen and (max-width: 600px) {
|
||
|
#container {
|
||
|
width: 100%;
|
||
|
}
|
||
|
}
|