text_defaults.css 903 B

1234567891011121314151617181920212223242526272829
  1. /* Copyright 2014 The Chromium Authors. All rights reserved.
  2. * Use of this source code is governed by a BSD-style license that can be
  3. * found in the LICENSE file. */
  4. /* This file is dynamically processed by a C++ data source handler to fill in
  5. * some per-platform/locale styles that dramatically alter the page. This is
  6. * done to reduce flicker, as JS may not run before the page is rendered.
  7. *
  8. * There are two ways to include this stylesheet:
  9. * 1. via its chrome://resources/ URL in HTML, i.e.:
  10. *
  11. * <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
  12. *
  13. * 2. via the webui::AppendWebUICSSTextDefaults() method to directly append it
  14. * to an HTML string.
  15. * Otherwise its $placeholders won't be expanded. */
  16. html {
  17. direction: ltr;
  18. }
  19. body {
  20. font-family: 'Segoe UI', Tahoma, sans-serif;
  21. font-size: 75%;
  22. }
  23. button {
  24. font-family: 'Segoe UI', Tahoma, sans-serif;
  25. }