/* checked*/
input[type="checkbox"]:checked {
    outline: 2px solid blue;
}

/* disabled */
input[type="text"]:disabled {
    background-color: lightgray;
}

/*focus */
#cool:focus {
    background-color: aqua;
}

/* Nth child */
p:nth-child(3) {
    color: orangered;
}