app.css 713 B

123456789101112131415161718192021
  1. /*
  2. In NativeScript, the app.css file is where you place CSS rules that
  3. you would like to apply to your entire application. Check out
  4. http://docs.nativescript.org/ui/styling for a full list of the CSS
  5. selectors and properties you can use to style UI components.
  6. /*
  7. In many cases you may want to use the NativeScript core theme instead
  8. of writing your own CSS rules. For a full list of class names in the theme
  9. refer to http://docs.nativescript.org/ui/theme.
  10. The imported CSS rules must precede all other types of rules.
  11. */
  12. @import '~nativescript-theme-core/css/core.light.css';
  13. /*
  14. The following CSS rule changes the font size of all UI
  15. components that have the btn class name.
  16. */
  17. .btn {
  18. font-size: 18;
  19. }