HTML/CSS: Below is the code and I need help in making sure the toggle switch along with the title at the top of the button to be aligned in the middle. Make sure to show the correct code and the screenshot of the output.    Code:  .toggle-switch {   position: relative;   display: inline-block;   width: 60px;   height: 34px; } .toggle-switch .switch-track {   background-color: var(--mode-btn-bg);   border-radius: 34px;   display: block;   height: 100%;   width: 100%;   position: absolute;   transition: background-color 0.3s; } .toggle-switch .switch-thumb {   background-color: var(--p-text);   border-radius: 50%;   width: 26px;   height: 26px;   position: absolute;   top: 4px;   left: 4px;   transition: transform 0.3s, background-color 0.3s; } input[type="checkbox"]:checked+.toggle-switch .switch-track {   margin: auto;   background-color: var(--mode-btn-bg) } input[type="checkbox"]:checked+.toggle-switch .switch-thumb {   transform: translateX(26px); } .toggle-switch+p::before {   content: "Draw mode"; } input[type="checkbox"]:checked+.toggle-switch+p::before {   content: "Proof mode"; } #ProofButtons {   display: none; } #DrawButtons {   display: block; }

New Perspectives on HTML5, CSS3, and JavaScript
6th Edition
ISBN:9781305503922
Author:Patrick M. Carey
Publisher:Patrick M. Carey
Chapter8: Enhancing A Website With Multimedia: Working With Sound, Video, And Animation
Section: Chapter Questions
Problem 5CP4
icon
Related questions
Question

HTML/CSS: Below is the code and I need help in making sure the toggle switch along with the title at the top of the button to be aligned in the middle. Make sure to show the correct code and the screenshot of the output. 

 

Code: 

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.toggle-switch .switch-track {
  background-color: var(--mode-btn-bg);
  border-radius: 34px;
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  transition: background-color 0.3s;
}

.toggle-switch .switch-thumb {
  background-color: var(--p-text);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  position: absolute;
  top: 4px;
  left: 4px;
  transition: transform 0.3s, background-color 0.3s;
}

input[type="checkbox"]:checked+.toggle-switch .switch-track {
  margin: auto;
  background-color: var(--mode-btn-bg)
}
input[type="checkbox"]:checked+.toggle-switch .switch-thumb {
  transform: translateX(26px);
}

.toggle-switch+p::before {
  content: "Draw mode";
}

input[type="checkbox"]:checked+.toggle-switch+p::before {
  content: "Proof mode";
}

#ProofButtons {
  display: none;
}

#DrawButtons {
  display: block;
}
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Follow-up Questions
Read through expert solutions to related follow-up questions below.
Follow-up Question

Where is the screenshot of the output? The code I gave you was style.css. Here is the code again to take a look at and make sure to provide a screenshot of the output. 

style.css

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.toggle-switch .switch-track {
  background-color: var(--mode-btn-bg);
  border-radius: 34px;
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  transition: background-color 0.3s;
}

.toggle-switch .switch-thumb {
  background-color: var(--p-text);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  position: absolute;
  top: 4px;
  left: 4px;
  transition: transform 0.3s, background-color 0.3s;
}

input[type="checkbox"]:checked+.toggle-switch .switch-track {
  margin: auto;
  background-color: var(--mode-btn-bg)
}
input[type="checkbox"]:checked+.toggle-switch .switch-thumb {
  transform: translateX(26px);
}

.toggle-switch+p::before {
  content: "Draw mode";
}

input[type="checkbox"]:checked+.toggle-switch+p::before {
  content: "Proof mode";
}

#ProofButtons {
  display: none;
}

#DrawButtons {
  display: block;
}
Solution
Bartleby Expert
SEE SOLUTION
Knowledge Booster
Image Element
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
New Perspectives on HTML5, CSS3, and JavaScript
New Perspectives on HTML5, CSS3, and JavaScript
Computer Science
ISBN:
9781305503922
Author:
Patrick M. Carey
Publisher:
Cengage Learning