Spaces:
Running
Running
File size: 1,463 Bytes
ab4a702 |
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 |
.container {
padding-left: 15px;
padding-right: 15px;
}
.wrapper {
display: flex;
height: 100%;
}
.panel {
flex: 1 0 auto;
max-width: 300px;
height: 100%;
overflow-y: auto;
position: relative;
color: var(--panel-color);
background-color: var(--panel-background);
}
.exampleList {
padding: 0;
margin-block-start: 16px;
margin-block-end: 16px;
}
.exampleList h3 {
color: var(--panel-emphasis);
}
code {
background-color: var(--code-background);
border: 2px solid var(--code-background);
border-radius: 0.25em;
}
.exampleList li {
list-style: none;
padding: 0.3em 0;
}
.expand {
display: none;
position: absolute;
right: 1em;
top: 1em;
width: 36px;
height: 36px;
background-image: url(../menu.svg);
background-size: cover;
}
.panel .panelContents {
display: block;
transition: max-height 0s;
max-height: 100vh;
}
#menuToggle {
display: none;
}
main {
overflow: auto;
}
@media only screen and (max-width: 768px) {
.wrapper {
flex-direction: column;
}
main {
overflow: visible;
}
#menuToggle ~ .panelContents {
max-height: 0;
overflow: hidden;
}
#menuToggle:checked ~ .panelContents {
max-height: 2000px;
}
.panel .panelContents {
display: block;
transition: max-height 0.3s ease-out;
}
.panel {
flex: 0 0 fit-content;
max-width: 100%;
height: auto;
overflow: hidden;
}
.expand {
display: inline-block;
}
}
|