Custom CSS

Web allows you to set a custom CSS to change the look and feel of every web page that you visit. You may want to do this to set a preferred font size or color scheme.

  1. Press the menu button in the top-right corner of the window and select Preferences ▸ Appearance.

  2. Under the Style section, switch Use Custom Stylesheet to on.

  3. Click on the pen icon.

  4. Your default text editor will open. Add your custom CSS and save the file.

An example of a custom CSS:

body{
    /*Make everything upside-down*/
    -webkit-transform: rotate(180deg);
}

Your custom CSS will override the style sheet on pages which you visit after you enable it.