Question: Task 0 5 In the desktop media query, modify the first comment within the query to , Desktop Viewport: Show desktop class, hide mobile -

Task 05
In the desktop media query, modify the first comment within the query to, Desktop Viewport: Show desktop class, hide mobile-tablet class. Below the .desktop style rule, create a new style rule for the .mobile-tablet class selector that sets the display to none .
Task 06
In the desktop media query, add the following comment after the style rule for aside: /* Style rules for table */
Below the comment, add the following style rules:
Create a style rule for the table selector that specifies a border with values of 1px solid #2a1f14, collapses the border, and sets top and bottom margins to zero and left and right margins to auto.
Create a style rule for the caption selector that specifies a font-size of 1.5em, font-weight of bold, and sets the padding to 1%.
Create a style rule for th and td selectors that specifies a border with values of 1px solid #2a1f14, and sets the padding to 1%.
Create a style rule for the th selector that sets the background-color to 2a1f14, the color to white (fff), and the font-size to 1.15em.
Create a style rule for the tr selector that sets the background-color to #deccba for odd rows.
/* Media Query for Desktop Viewport */
@media screen and (min-width: 1000px), print {
/* Desktop Viewport: Style rules for nav area */
nav li {
font-size: 1.5em;
}
nav li a {
padding: 0.5em 1.5em;
}
nav li a:hover {
color: #2a1f14;
background-color: \square#f6eee4;
opacity: 0.5;
}
.grid {
grid-template-columns: auto auto auto;
grid-gap: 30px;
}
aside {
grid-column: 1/ span 3;
font-size: 2em;
}
}
/* Desktop Viewport: Style rules for main content */
#info ul {
margin: 5%;
}
/* Media Query for Large Desktop Viewports */
@media screen and (min-width: 1921px), print {
body {
background: linear-gradient(\square#f6eee4,\square#78593a);
}
#wrapper {
width: 1920px;
margin: 0 auto;
}
main {
background-color: \square#f6eee4;
}
.grid {
grid-template-columns: auto auto auto auto;
}
aside {
grid-column: 1/ span 4;
font-size: 3em;
}
}
Task 0 5 In the desktop media query, modify the

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!