Question
Please help! Path of light yoga studio. Here is my code for yoga.css: body { background-color: #3f2860; color: #3f2860; font-family: verdana, arial,sans-serif; margin: 0; padding:0;
Please help!
Path of light yoga studio.
Here is my code for yoga.css:
body { background-color: #3f2860;
color: #3f2860;
font-family: verdana, arial,sans-serif; margin: 0; padding:0;
}
header { background-color: #9bc1c2;
background-image: url(lilyheader.jpg);
background-repeat: no-repeat;
background-position: right;
height: 150px; padding-top:1px;
}
h1 { padding-top: 1em;
padding-left: 2em;
}
nav { float: none;;
width: auto;
font-weight: bold; padding-left:2em;
}
nav a { text-decoration: none;
border-color: #cccccc;
border-width: 3px;
border-style: outset;
text-align: center;
font-size:90%; font-weight: bold;
display: block;
padding: 2.5em 1em;
margin: 0; float:clear;
}
nav a:link { color: #3f2860;
}
nav a:visited { color: #497777;
}
nav a:hover { color: #a26100;
border: 3px inset #333333;
}
nav ul { list-style-type: none;
}
footer { background-color: #9bc1c2;
font-size: .60em;
font-style: italic;
text-align: center;
}
.studio { font-style: italic;
}
#wrapper {margin-left: auto;
margin-right: auto;
width: 100%;
background-color: #f5f5f5;
min-width: 0px;
max-width: 1480px; margin : 0px; padding:0px;
}
main { padding-left: 2em;
padding-right: 2em;
margin-left: 170px;
padding-top: 1em;
}
* { box-sizing: border-box;
}
.floatleft { float: left;
margin-right: 4em;
}
.clear { clear: both;
}
header, nav, main, footer { display: block;
}
#mobile { display: none;
}
#desktop { display: inline;
}
@media only screen and (max-width: 1024px) {
body { margin: 0;
padding: 0;
}
#wrapper { width: 100%;
min-width: 0;
margin: 0;
padding: 0;
}
header { padding-top: 1px;
}
h1 { padding-top: 1em;
}
nav { float: none;
width: auto;
padding-left: 2em;
}
nav a { padding: 0.2em;
margin-left: 0.3em;
float: left;
width: 23%;
}
main { padding-top: 2.5em;
padding-bottom: 2.5em;
padding-left: 1em;
padding-right: 1em;
margin: 0;
font-size: 90%;
clear: both;
}
#hero img{width: 100%;
height: auto;
}
h2 { padding-left: 2em;
padding-right: 2em;
}
h3 { padding-left: 2em;
padding-right: 2em;
}
p { padding-left: 2em;
padding-right: 2em;
}
dl { padding-left: 2em;
padding-right: 2em;
}
main ul { margin-left: 2em;
}
.floatleft { margin-left: 2em;
margin-bottom: 1em;
}
.clear { padding-left: 2em;
}
}
@media only all and (max-width: 768px) {
h1 { font-size: 2em;
padding-top: 0.25em;
padding-left: 1.5em;
width: 85%;
text-align: center;
}
nav a { padding: 0.5em;
width: 45%;
float: left;
min-width: 6em;
margin-left: 0.5em;
}
main { padding-top: 0;
}
.floatleft { float: none;
display: none;
}
#hero { display: none;
}
footer { padding: 0.5em;
margin: 0;
}
#mobile { display: inline; }
#desktop { display: none; }
}
table{ width: 60%; border: 1px; border-color: #3f2860; border-collapse: collapse; margin: 1em; } td,th{ padding: 5px; border: 1px; border-color: #3f2860; } tr:nth-of-type(3) { background: #9bc1c2; } caption{ margin: 1em; font-weight: bold; font-size: 120%; }
Task 2: Configure the CSS. Modify the external style sheet (yoga.css). Open yoga.css in a text editor. Review Figure 9.42 and the wireframe in Figure 9.43. Notice how the text labels for the form controls are on the left side of the content area but contain right-aligned text. Notice the empty vertical space between each form control. Configure CSS as indicated below: Figure 9.43 form label text box label text box label scrolling text box submit button Wireframe for the form Figure 9.43 Full Alternative Text 1. Create a label element selector to float to the left with block display. Set the text alignment to right, font-weight to bold, assign a width of 10em, and configure lem right padding. 2. Configure the input element and textarea element selectors with block display and 2em of bottom margin. 3. Configure an id named mySubmit with a 12em left margin. 4. Configure the form element selector with 3em padding. Save the yoga.css fileStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started