You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
color: blue; /* the match() function takes a single CSS3 selector and works backwards through the stylesheet(s) and fetches the property reprsented in the given selector */
}
button,
input[type="button"],
input[type="submit"],
input[type="reset"] { /* comma-separated lists in parentheses match multiple selectors */
background-color: white;
padding: 0.5em 1em;
width: calc(100% - 1em - 1em); /* the ?() function performs math. The prop() function works like the match() function, but for properties rather than selectors */
}
button:hover, button:focus, /* selectors within selectors (like #id { .class {}}) are allowed as shorthand (for #id.class {}) */
@media (max-width: 1024px) { /* parentheses denote a media query. These are distinct from multiple-selection parentheses in that they are not comma-separated */
button,
input[type="button"],
input[type="submit"],
input[type="reset"] {
font-size: 80%;
}
}
header h1.plain,
header h2.plain,
header h3.plain,
header h4.plain,
header h5.plain,
header h6.plain,
header .heading.plain { /* multiple-selectors can work with any selector */
background: transparent; /* match() can take seemingly recursive selectors because they skip themselves and work backwards. If no value is found, an expected default is used */