1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-09-08 21:30:50 +02:00

feat: Custom checkbox button

This commit is contained in:
Phuoc Nguyen
2022-09-21 09:09:00 +07:00
parent 37a6729d08
commit 14e1965796
8 changed files with 116 additions and 258 deletions

View File

@@ -0,0 +1,9 @@
{% for i in range(0, 3) %}
<label class="custom-checkbox-button">
<input type="checkbox" class="custom-checkbox-button__input" />
<div class="custom-checkbox-button__square">
<div class="custom-checkbox-button__checkbox custom-checkbox-button__checkbox--selected"></div>
</div>
{% rectangle %}
</label>
{% endfor %}

View File

@@ -0,0 +1,65 @@
---
layout: layouts/post.njk
title: Custom checkbox button
description: Create a custom checkbox button with CSS flexbox
keywords: css checkbox, css flexbox
---
## HTML
```html
<label class="custom-checkbox-button">
<!-- The real checkbox -->
<input type="checkbox" class="custom-checkbox-button__input" />
<!-- The fake square -->
<div class="custom-checkbox-button__square">
<!-- The inner square -->
<div class="custom-checkbox-button__checkbox custom-checkbox-button__checkbox--selected"></div>
</div>
<!-- The text -->
...
</label>
```
## CSS
```css
.custom-checkbox-button {
/* Center the content horizontally */
align-items: center;
display: inline-flex;
/* Cursor */
cursor: pointer;
}
.custom-checkbox-button__input {
/* Hide it */
display: none;
}
.custom-checkbox-button__square {
border: 1px solid #d1d5db;
border-radius: 0.25rem;
/* Spacing */
margin-right: 0.5rem;
padding: 0.25rem;
}
.custom-checkbox-button__checkbox {
background-color: transparent;
border-radius: 0.25rem;
height: 1rem;
width: 1rem;
}
.custom-checkbox-button__checkbox--selected {
/* For selected checkbox */
background-color: #3b82f6;
}
```
{% demo %}{% include "patterns/custom-checkbox-button.njk" %}{% enddemo %}

View File

@@ -89,6 +89,7 @@ eleventyExcludeFromCollections: true
<div class="category__posts">
{% pattern "Button with icon" %}{% include "patterns/button-with-icon.njk" %}{% endpattern %}
{% pattern "Chip" %}{% include "patterns/chip.njk" %}{% endpattern %}
{% pattern "Custom checkbox button" %}{% include "patterns/custom-checkbox-button.njk" %}{% endpattern %}
</div>
</div>