Entered media query and code is still not passing

Tell us what’s happening:
One last step left on technical doc project for media query I added the query into my CSS. and still stuck on that one last task…very frustrating and doesnt make sense. I would love to hear what the issue is here…

Your code so far

@import url('https://fonts.googleapis.com/css?family=Raleway:300,400,500,600,700');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
html, body {
    background-color: rgb(243, 243, 243);
    width: 100%;
    height: 100%;
    min-width: 300px;
    line-height: 1.5;
    overflow-x: hidden;
}
.padding{
    padding-top: 2em;
    padding-bottom: 3em;
}
#navbar{
    min-width: 300px;
    width: 330px;
    position: fixed;
}
header{
    font-size: 2.2em;
    font-weight: 500;
}
hr{
    padding-bottom: .5em;
}
#navbar .title{
    text-align: center;
    font-size: 3.5em;
    padding-top: 25%;
    font-weight: 600;
    letter-spacing: -6px;
    font-family: 'Raleway';
}
#navbar i{
    color: #f8ca67;
    font-size: 1.3em;
    margin-right: .09em; 
}
#navbar li{
    margin: 0 13%;
    font-size: 1.1em;
}
.nav-link{
    color: #454549;
    font-weight: 400;
}
.nav-link:hover{
    color: #f73859;
}

#main-doc{
    padding: 2.5em 3em 3em;
    background-color: white;
}
.main-section{
    margin-bottom: 2.5em;
}
.main-section article{
    color: #4d4e53;
    line-height: 1.6;
}
.main-section li{
    margin-left: 1.6em;
    margin-top: 1.5em;
}
code{
    display:block;
    text-align: left;
    white-space: pre;
    line-height: 2;
    background-color:#f7f7f7;
    padding:15px;
    margin:10px;
    color: #f73859;
    border-radius:5px;
}
@media only screen and (max-width: 1680px){
    #main-doc{
        margin-left: 10%;
    }
}

@media only screen and (max-width: 575px){
    #main-doc{
        margin: 0 5%;
    }
    #navbar{
        width: 100%;
        position: relative;
    }
    .navbar-movil{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        padding: 5% 5% 3% 5%;
    }
    .navbar-toggler {
        color: #454549;
        border-color: #9393953b; 
    }
    .navbar-toggler-icon {
        padding: 1px 4px;
        font-weight: 300;
    }
    #navbar .title{
        font-size: 2.5em;
        padding-top: 0%;
        padding-left: 2%; 
    }
    #navbar li{
        margin: 0 13%;
    }
    #navbar i{
        margin-right: .15em; 
        color: #f8c149d7;
    }
}

WARNING

The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.

You will need to take an additional step here so the code you wrote presents in an easy to read format.

Please copy/paste all the editor code showing in the challenge from where you just linked.

Replace these two sentences with your copied code.
Please leave the ``` line above and the ``` line below,
because they allow your code to properly format in the post.

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14588.98.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.59 Safari/537.36

Challenge: Build a Technical Documentation Page

Link to the challenge:

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.