compile issues

This commit is contained in:
Poojawa
2018-03-06 22:35:16 -06:00
parent 6b6a08d332
commit 3c1e557302
9 changed files with 85 additions and 153 deletions
+25
View File
@@ -337,14 +337,39 @@ div.notice
transition: .4s;
}
.slider.red:before {
background-color: #d6858b;
}
.slider.locked:before {
content: url("padlock.png");
background-color: #b4b4b4;
}
input:checked + .slider {
background-color: #40628a;
}
input:checked + .slider.red {
background-color: #a92621;
}
input:checked + .slider.locked {
background-color: #707070;
}
input:focus + .slider {
box-shadow: 0 0 1px #2196F3;
}
input:focus + .slider.red {
box-shadow: 0 0 1px #f3212d;
}
input:focus + .slider.locked {
box-shadow: 0 0 1px #979797;
}
input:checked + .slider:before {
transform: translateX(24px);
}