No Description

styles.js 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. //styles
  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. buttonContainer: {
  16. flexDirection: 'column',
  17. backgroundColor: '#f0f8ff',
  18. // alignItems: 'center',
  19. // justifyContent: 'center',
  20. paddingTop:40,
  21. marginTop: 15,
  22. },
  23. bottom: {
  24. flex: 0.3,
  25. backgroundColor: "gray",
  26. borderWidth: 5,
  27. borderBottomLeftRadius: 20,
  28. borderBottomRightRadius: 20,
  29. alignItems:'center',
  30. },
  31. container: {
  32. flexDirection: 'column',
  33. justifyContent: 'center',
  34. backgroundColor: '#f0f8ff',
  35. alignItems: 'center',
  36. justifyContent: 'center',
  37. paddingTop:20,
  38. marginTop: 15,
  39. },
  40. containerbackground:{
  41. backgroundColor: '#f0f8ff'
  42. },
  43. intro: {
  44. fontWeight: "bold",
  45. color:"#black",
  46. fontSize: 30,
  47. },
  48. sub: {
  49. color:"#black",
  50. fontWeight: "bold",
  51. fontSize: 15,
  52. paddingBottom:10,
  53. },
  54. Navsub: {
  55. color:"#black",
  56. fontWeight: "bold",
  57. fontSize: 30,
  58. paddingBottom:10,
  59. },
  60. scrollView:{
  61. marginHorizontal: 20
  62. },
  63. listItem:{
  64. fontSize: 30,
  65. color: "white",
  66. textDecorationLines: "underline"
  67. },
  68. listButtons:{
  69. fontSize: 15,
  70. color: "white",
  71. textDecorationLines: "underline"
  72. },
  73. buttonsVer: {
  74. flexDirection: 'column',
  75. justifyContent: 'center',
  76. marginTop: 40,
  77. marginBottom: 30,
  78. margin: 30,
  79. borderColor: "grey",
  80. }
  81. });