Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Добавляет статью про стилизацию чекбокса #5413

Merged
merged 25 commits into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
9df805c
Добавляет статью про стилизацию чекбокса
loonlylokly Jun 30, 2024
03902b9
Исправляет очепятки
loonlylokly Jun 30, 2024
8dea476
Добавляет предложенные изменения и меняет раздел
loonlylokly Jul 5, 2024
2b1a98c
Добавляет радиокнопку в статью и исправляет дэмки
loonlylokly Jul 6, 2024
6bd3820
Чистит текст "На практике"
loonlylokly Jul 6, 2024
0c19f01
Дописывает про focus-visible и подгоняет высоту iframe-ов
loonlylokly Jul 6, 2024
54c0f02
Добавляет fieldset и legend, уточняет про доступность, выпендривается…
loonlylokly Jul 8, 2024
51788a1
Добавил про aria-disabled и добавил в дэмках aria-hidden, переименова…
loonlylokly Jul 9, 2024
4c00213
Причёсывает демки
skorobaeus Jul 9, 2024
79daef0
Редачит текст
skorobaeus Jul 9, 2024
c6a96b3
Merge branch 'doka-guide:main' into checkbox-style
loonlylokly Jul 9, 2024
158164a
Переименовывает демки
loonlylokly Jul 9, 2024
4b88b56
Синхронизует тайтлы
skorobaeus Jul 10, 2024
9cf70ec
Правит демки, исправляет цвет, добавляет про понятный дизайн
loonlylokly Jul 10, 2024
e5fc633
Вычитывает, форматирует и редачит
TatianaFokina Jul 16, 2024
ca53cad
Улучшает демку с accent-color
TatianaFokina Jul 16, 2024
c8cc9ea
Улучшает демку с гав
TatianaFokina Jul 16, 2024
40f0416
Улучшает демку с псевдо
TatianaFokina Jul 16, 2024
c972aae
Форматирует инлайновые SVG в примерах
TatianaFokina Jul 16, 2024
5d17f2c
Исправляет работоспособность кода из статьи и исправляет цвет бордера
loonlylokly Jul 16, 2024
3be255e
Добавляет рецепт в индекс раздела
solarrust Jul 19, 2024
eea1d86
Чуть-чуть правит демки
solarrust Jul 19, 2024
1df98e7
Меняет альт аватарки
loonlylokly Jul 19, 2024
6dd2865
Форматирует пример
TatianaFokina Jul 22, 2024
aaf084d
Сдаётся
TatianaFokina Jul 22, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions people/lonlylokly/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
name: "Михаил Кривдин"
url: https://github.com/loonlylokly
photo: photo.png
photoAlt: "Некоторые тайны сами себя стерегут. И захочешь – не расскажешь. И эта аватарка не исключение."
loonlylokly marked this conversation as resolved.
Show resolved Hide resolved
badges:
- first-contribution-small
---

Магистр ордена Дырявой Верстки.
Binary file added people/lonlylokly/photo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,123 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<title>Стилизация чекбокса (accent-color) — Стилизация чекбоксов и радиокнопок — Дока</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Roboto&display=swap"
/>
<style>
*,
*:after,
*:before {
box-sizing: border-box;
margin: 0;
padding: 0;
}

html, body {
height: 100%;
}

body {
display: flex;
justify-content: center;
align-items: center;
color: #FFFFFF;
padding: 50px;
background: #18191C;
font-family: Roboto, sans-serif;
font-size: 18px;
}

form {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
}

fieldset {
min-width: 350px;
padding: 25px 15px 15px;
}

.checkbox > *, .radio > *{
vertical-align: middle;
}

.checkbox + .checkbox, .radio + .radio {
margin-block-start: 10px;
}

input[type="checkbox"],
input[type="radio"] {
accent-color: #C56FFF;
width: 20px;
height: 20px;
}

input:not(:disabled),
input:not(:disabled) ~ * {
cursor: pointer;
}

@media (width <= 768px) {
body {
padding: 30px;
}

fieldset {
min-width: initial;
width: 100%;
}
}
</style>
</head>
<body>
<form>
<fieldset>
<legend>Чекбоксы</legend>
<div class="checkbox">
loonlylokly marked this conversation as resolved.
Show resolved Hide resolved
<input type="checkbox" id="checkbox1">
<label for="checkbox1">Чекбокс 1</label>
</div>
<div class="checkbox">
<input type="checkbox" id="checkbox1-c" checked>
<label for="checkbox1-c">Чекбокс 1 (отмечен)</label>
</div>
<div class="checkbox">
<input type="checkbox" id="checkbox1-d-c" disabled checked>
<label for="checkbox1-d-c">Чекбокс 1 (отмечен и неактивен)</label>
</div>
<div class="checkbox">
<input type="checkbox" id="checkbox1-d-u" disabled />
<label for="checkbox1-d-u">Чекбокс 1 (неактивен)</label>
</div>
</fieldset>
<fieldset>
<legend>Радиокнопки</legend>
<div class="radio">
<input type="radio" id="radio1" name="radio">
<label for="radio1">Радиокнопка 1</label>
</div>
<div class="radio">
<input type="radio" id="radio1-c" name="radio" checked>
<label for="radio1-c">Радиокнопка 1 (отмечена)</label>
</div>
<div class="radio">
<input type="radio" id="radio1-d-c" disabled checked>
<label for="radio1-d-c">Радиокнопка 1 (отмечена и неактивна)</label>
</div>
<div class="radio">
<input type="radio" id="radio1-d-u" disabled>
<label for="radio1-d-u">Радиокнопка 1 (неактивна)</label>
</div>
</fieldset>
</form>
</body>
</html>
Loading
Loading