steve0greatness,
created on Thursday, 14 March 2024, 21:41:36 (1710452496),
received on Monday, 6 May 2024, 02:55:38 (1714964138)
Author identity: Steve0Greatness <steve0greatnessiscool@gmail.com>
94ced535a8b7203fb602b987d8ac60aa7247f7cb
blog-posts/checkbox-custom-styles.md
@@ -20,8 +20,10 @@ input[type="checkbox"] {
background-color: grey;
}
```
<br />
<iframe src="/blog-files/checkbox-custom-styles-ex1.html" style="background: #000; border: none"></iframe>
<a href="/blog-files/checkbox-custom-styles-ex1.txt">View Source</a>
Now we can do whatever we want to it. You're also able to add a `:checked` sudo to change certain elements(like the `background-color`) depending on if the checkbox is checked or not.
@@ -39,5 +41,7 @@ input[type="checkbox"]:checked {
background: #ce5aff;
}
```
<br />
<iframe src="/blog-files/checkbox-custom-styles-ex2.html" style="background: #000; border: none"></iframe>
<a href="/blog-files/checkbox-custom-styles-ex2.html">View Source</a>
static/blog-files/checkbox-custom-styles-ex1.txt
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<style>
input[type="checkbox"] {
appearance: none;
width: 15px;
height: 15px;
background-color: grey;
}
</style>
</head>
<body>
<input type="checkbox" />
</body>
</html>
static/blog-files/checkbox-custom-styles-ex2.txt
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<style>
input[type="checkbox"] {
appearance: none;
width: 15px;
height: 15px;
background: #000;
border: 1px #fff solid;
border-radius: 2px;
}
input[type="checkbox"]:checked {
background: #ce5aff;
}
</style>
</head>
<body>
<input type="checkbox" />
</body>
</html>