Changes from default HTML elements

Placeholder

When sing Pichai-UX all elements will have a placeholder. This means that you can use a placeholder attribute on any HTML element that is available at your disposal.

Modifying placeholder style

You can modify the style using the below CSS.

*:empty:not(:focus):before {
    content: attr(placeholder); /* required, ensures the text in the placeholder attribute is visible as a placeholder */

    font-size:14px;
  }

Last updated