.main-footer__box:has(input:focus) label {
color: red;
}
<table>
<thead>
<tr>
<th v-for="day in nameOfDays">{{ day }}</th>
</tr>
</thead>
<tbody>
<tr v-for="week in getCalendar">
<td v-for="day in week" class="day">{{ day }}</td>
</tr>
</tbody>
</table>
.day:hover {
background: red;
color: white;
}
как числа которые относятся к прошлому и будущему месяцу сделать серыми а не черными в отличии чисел нынешнего месяца?
<tr v-for="(week, i) in getCalendar">
<td v-for="day in week" :class="classes(i, day)">{{ day }}</td>
</tr>
methods: {
classes(week, day) {
return [
'day',
((!week && day > 7) || (week > 2 && day < 7)) && 'other-month',
];
},
...
.other-month {
...
.mdl-radio .mdl-radio__button:checked ~ .mdl-radio__outer-circle {
border-color: red;
}
.mdl-radio .mdl-radio__button:checked ~ .mdl-radio__inner-circle {
background-color: orange;
}
.mdl-radio .mdl-radio__button:checked ~ .mdl-radio__label {
color: blue;
}
animation-delay
. Или поверните .container
через transform: rotate
. Тут сама сложность в том чтоб сделать бордер.
.images_box-model-spec {
order: 1;
}
.itemsnew-list-item-wrapper {
order: 2;
}
.button:hover {
animation: hover 2s linear;
}
@keyframes hover {
0%, 50% {
opacity: 0.5;
},
100% {
opactity: 1;
}
}
<input type="range" min="20" max="200" value="100">
<img src="...">
document.querySelector('input').addEventListener('input', function() {
document.querySelector('img').style.filter = `brightness(${this.value}%)`;
});
.button {
color: white;
background: transparent;
transition: all 0.4s;
}
.button:hover {
color: black;
background: white;
}
.todo-list-item.done { text-decoration: line-through; };
this.setState({ done: true });
true
назначать, а переключать текущее значение на противоположное?<span className= {classNames} onClick= {this.onLabelClick} >{ label } <button type="button" onClick= {this.onMarkClick }
.icon {
display: inline-flex;
justify-content: center;
align-items: center;
font-size: 50px;
padding: 0.2em;
width: 1.5em;
height: 1.5em;
border-radius: 100%;
color: #fff;
background: #0f0;
}
.icon::before {
content: attr(data-char);
font-size: 1em;
}
<a class="icon" data-char="¶"></a>
<a class="icon" data-char="X"></a>
<a class="icon" data-char="?"></a>