<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
nav{
    position: sticky;
    z-index: 100
}jhkh
body {
    /* background-color: rgb(173, 216, 230,.2); */
    background-color: lime ;
    /* background-color: lightgoldenrodyellow ; */
    /* background-color: indianred ; */
    overflow: hidden;
    overflow-y: scroll;

}
body &gt; header a:focus,
body &gt; header a:active {box-shadow: 0 0 10px 6px rgb(116, 183, 180, 1);}
body &gt; header&gt;h1 {font-size: 120%;}

body &gt; header{

}
nav{
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 2;
}
body &gt; header&gt;nav#mainLinksContainer {
    width: 100%;
    display: flex;
    width: 100% !important;
    
}

header &gt; nav#mainLinksContainer &gt;#mainLinks {
    display: flex;
    width: 100%;
    justify-content: space-around;
    /* flex-basis: 80%;     */
    /* border: 3px solid black; */
}
#mainLinks&gt;a {
    flex-basis: 40%;
    border: 1px solid black;
    border-top: none;
    display: inline-flex;
    padding: 0 5%;
    justify-content: center;
    align-items: center;
}

#tutorialLink&gt;img {
    min-width: 150px;
    max-width: 200px;
    min-height: 60px;
    max-height: 50px;
}
#targetDiv {
    width: 100vw;
    flex-basis: 78%;
     display: flex;;
     flex-direction: column;
     align-items: center;
     width: 100%;
     flex-grow: 1;
     overflow-x: hidden;
 }

nav.section-lesson-title {
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}
main {
    display: flex;
}
main&gt;aside {
    flex-basis: 20%;
    width: fit-content;
    position: sticky;
    top: 2%;
    height: 100vh;
    border-right: 1px solid black;
    padding-top: 1%;
    padding-left: .5%;
    padding-right: 2%;
}
main&gt;aside {
    flex-basis: 22%;
    padding-left: 1.5%;
    border-bottom: 1px solid black;
}
aside:active,aside:focus,
main:active,main:focus,
nav:active,nav:focus{box-shadow: 0 0 3px 3px lightseagreen;}
.sections-container{
    width: fit-content;
    display: flex;
    flex-direction: column;
    color: black;
    overflow: wrap;
}
.section-container{
    display: flex;
    flex-direction: column;
    margin: 4% 0;
    width: fit-content;
    flex-wrap: wrap;
    list-style:none;
}
.section-container &gt; .section {    
    width: fit-content;
    font-size: 82%;
    text-decoration: none;
    text-wrap: wrap;
    white-space: wrap;
    margin-bottom: 3%;
    /* display: inline-block; */
    /* color: black; */
}
.sub-section{
    width: fit-content;
    list-style:none;
    white-space: wrap;
    text-wrap: wrap;
}
.sub-section &gt; li {
    font-size: 75%;
    margin-bottom: 3%;
    white-space: wrap;
    text-wrap: wrap;
}
.sub-section &gt; li &gt; a{
    text-decoration: none;
    color: black;
    /* Breaks long words */    
    word-wrap: break-word;
    /* Allows text to wrap */
    white-space: normal;
    /* Breaks long text for older browsers */
    overflow-wrap: break-word;
}

.sub-section &gt; li &gt; ul {
    list-style: none;
    font-size: .8rem;
    width: fit-content;
    white-space: wrap;
    text-wrap: wrap;
}
.sub-section&gt;li&gt;ul&gt;li{
    font-size: .6rem;
    white-space: wrap;
    text-wrap: wrap;
}
.sub-section&gt;li&gt;ul&gt;li&gt;code{
    font-size: .5rem;
    white-space: wrap;
    text-wrap: wrap;
}
.section li  code {
    display: inline-block;
    background-color: lightgrey;
}
.hide {
    display: none;
}
@media screen and (max-width: 900px){
    main &gt; aside  {
        min-width: 120px;
    }
}
@media screen and (max-width: 771px){
    body&gt;header {
            /* width: fit-content; */
    }
    body {
        overflow-x: hidden;
    }
    main&gt;aside {
        flex-basis: 22%;
        padding-left: 1.5%;
        border-bottom: 1px solid black;
    }    
    #targetDiv {
        width: 100%;
        flex-basis: 68%;
        flex-grow: 1;
    }
}
@media screen and (max-width: 500px) {
    body{
        overflow-x: hidden;
    }
    body &gt; header {
        width: fit-content;
    }
    main&gt;aside {
        flex-basis: 22%;
        padding-left: 1.5%;
        border-bottom: 1px solid black;
        min-width: 120px;
    }
    #targetDiv {
        width: 100%;
        flex-basis: 68%;
        flex-grow: 1;
    }
}
</pre></body></html>