Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.84 KB | None | 0 0
  1. /* component1.css */
  2. RadListView {
  3.     background-color: #e9f0f3;
  4. }
  5.  
  6. .list-container {
  7.     /* I think the shorthand order is different from CSS.. so being explicit */
  8.     margin-top: 20px;
  9.     margin-bottom: 20px;
  10.     margin-right: 30px;
  11.     margin-left: 30px;
  12. }
  13.  
  14.  
  15. /* component2.css */
  16. StackLayout {
  17.     background-color: white;
  18.     border-radius: 15px;
  19.     padding: 40px;
  20. }
  21.  
  22. .title {
  23.     font-weight: bold;
  24. }
  25.  
  26. .description {
  27.     color: #656668;
  28.     max-height: 100px;
  29. }
  30.  
  31. /* app.css */
  32. @import '~nativescript-theme-core/css/core.light.css';
  33.  
  34. /*
  35. For example, the following CSS rule changes the font size of all UI
  36. components that have the btn class name.
  37. */
  38. .btn {
  39.     font-size: 18;
  40. }
  41.  
  42. ActionBar {
  43.     background-color: #e9f0f3;
  44.     color: black;
  45. }
  46.  
  47. Page {
  48.     background-color: #e9f0f3;
  49.     color: black;
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement