Technical Documentation Page - Build a Technical Documentation Page

Says I should use atleast one media query. Stuck on this part- not sure where I’m going wrong

Your code so far

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.

nav, main {
  background-color: #f5f6f7;
  color: #1b1b32;
  font-family: Verdana, sans-serif;
  margin: 0;
}


#navbar {
  position: relative;
  min-width: 150px;
  top: 0px;
  right: 0px;
  width: 2000px;
  height: 100%;
  padding-left: 100px;
  line-height: 2.5;
  border-top: solid; 
  border-right: solid;
  

}

nav {
  font-size: 18px;
}


header {
  font-family: Helvetica, sans-serif;
  font-weight: bold;
  font-size: 24px;
  padding-top: 5px;
  padding-bottom: 5px;
}

h5 {
  font-weight: medium;
  text-indent: 25px;
}

code {
  display: block;
  position: relatitve;
  line-height: 1.6;
  letter-spacing: 1.8;
  white-space: pre;
  text-align: center;
  background-color: #e2e4ff;
  border-radius: 50px 20px;
  padding: 10px;
}

li, .nav-link {
  border-bottom: none;
}

ul, .nav-list {
  list-style: none; 
}

@media (min-width: 280px) and (max-width: 1500px) {
  #navbar {width: 200px; float: left;}

  #main-doc {margin-left: 246px;}
}


@media (min-width 1600px) {
  header {font-size: 35px;}

  nav {font-size: 25px;}
}
 post.

Your mobile information:

iPhone - iOS15.6

Challenge: Technical Documentation Page - Build a Technical Documentation Page

Link to the challenge:

Hi @mfd7y2gd6b

Please also post the html

Happy coding

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