Keine Beschreibung

styles.js 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. import { StyleSheet} from 'react-native';
  2. const styles = StyleSheet.create({
  3. buttons: {
  4. flexDirection: 'row',
  5. justifyContent: 'center',
  6. marginTop: 40,
  7. marginBottom: 30,
  8. margin: 30,
  9. borderColor: "grey",
  10. borderRadius: 8,
  11. padding: (30, 16),
  12. backgroundColor: "black",
  13. marginTop: 0,
  14. },
  15. navContainer: {
  16. flexDirection: 'row',
  17. justifyContent: "space-evenly",
  18. borderColor: "black",
  19. borderWidth: 5,
  20. borderRadius: 8,
  21. paddingTop: 20,
  22. backgroundColor: "gray",
  23. marginTop: 5,
  24. },
  25. buttonContainer: {
  26. flexDirection: 'column',
  27. backgroundColor: '#f0f8ff',
  28. alignItems: 'center',
  29. justifyContent: 'center',
  30. paddingTop:100,
  31. marginTop: 40,
  32. },
  33. container: {
  34. flexDirection: 'column',
  35. justifyContent: 'center',
  36. backgroundColor: '#f0f8ff',
  37. alignItems: 'center',
  38. justifyContent: 'center',
  39. paddingTop:20,
  40. marginTop: 20,
  41. },
  42. containerbackground:{
  43. backgroundColor: '#f0f8ff'
  44. },
  45. intro: {
  46. fontWeight: "bold",
  47. color:"#black",
  48. fontSize: 30,
  49. },
  50. sub: {
  51. color:"#black",
  52. fontWeight: "bold",
  53. fontSize: 15,
  54. paddingBottom:10,
  55. },
  56. Navsub: {
  57. color:"#black",
  58. fontWeight: "bold",
  59. fontSize: 30,
  60. paddingBottom:10,
  61. },
  62. scrollView:{
  63. marginHorizontal: 20
  64. },
  65. listItem:{
  66. fontSize: 30,
  67. color: "white",
  68. textDecorationLines: "underline"
  69. },
  70. listButtons:{
  71. fontSize: 15,
  72. color: "white",
  73. textDecorationLines: "underline"
  74. },
  75. buttonsVer: {
  76. flexDirection: 'column',
  77. justifyContent: 'center',
  78. marginTop: 40,
  79. marginBottom: 30,
  80. margin: 30,
  81. borderColor: "grey",
  82. },
  83. bottom: {
  84. flex: 0.3,
  85. backgroundColor: "gray",
  86. borderWidth: 5,
  87. alignItems: 'center',
  88. borderBottomLeftRadius: 20,
  89. borderBottomRightRadius: 20,
  90. },text: {
  91. fontSize: 16,
  92. lineHeight: 21,
  93. fontWeight: 'bold',
  94. letterSpacing: 0.25,
  95. color: 'white',
  96. },
  97. });
  98. export {styles};