You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

styles.js 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. // @flow
  2. const SECONDARY_COLOR = '#B8C7E0';
  3. export default {
  4. avatar: {
  5. borderColor: 'red'
  6. },
  7. button: {
  8. alignItems: 'center',
  9. borderRadius: 4,
  10. marginVertical: 8,
  11. paddingVertical: 10
  12. },
  13. contentWrapper: {
  14. alignItems: 'center',
  15. flexDirection: 'column',
  16. padding: 32
  17. },
  18. dialogTitle: {
  19. fontSize: 18,
  20. fontWeight: 'bold',
  21. marginBottom: 10
  22. },
  23. displayNameText: {
  24. fontWeight: 'bold',
  25. marginVertical: 10
  26. },
  27. editButton: {
  28. alignSelf: 'flex-end',
  29. paddingHorizontal: 10
  30. },
  31. editIcon: {
  32. color: 'black',
  33. fontSize: 16
  34. },
  35. field: {
  36. borderColor: SECONDARY_COLOR,
  37. borderRadius: 4,
  38. borderWidth: 1,
  39. marginVertical: 8,
  40. padding: 8
  41. },
  42. fieldRow: {
  43. paddingTop: 16
  44. },
  45. fieldLabel: {
  46. textAlign: 'center'
  47. },
  48. formWrapper: {
  49. alignItems: 'stretch',
  50. alignSelf: 'stretch',
  51. paddingVertical: 16
  52. },
  53. joiningMessage: {
  54. textAlign: 'center'
  55. },
  56. loadingIndicator: {
  57. marginVertical: 36
  58. },
  59. participantBox: {
  60. alignItems: 'center',
  61. alignSelf: 'stretch',
  62. borderColor: SECONDARY_COLOR,
  63. borderRadius: 4,
  64. borderWidth: 1,
  65. marginVertical: 18,
  66. paddingVertical: 12
  67. },
  68. primaryButton: {
  69. alignSelf: 'stretch',
  70. backgroundColor: 'rgb(3, 118, 218)'
  71. },
  72. primaryButtonText: {
  73. color: 'white'
  74. },
  75. secondaryButton: {
  76. alignSelf: 'stretch',
  77. backgroundColor: 'transparent'
  78. },
  79. secondaryText: {
  80. color: 'rgba(0, 0, 0, .7)'
  81. },
  82. // KnockingParticipantList
  83. knockingParticipantList: {
  84. alignSelf: 'stretch',
  85. backgroundColor: 'rgba(22, 38, 55, 0.8)',
  86. flexDirection: 'column'
  87. },
  88. knockingParticipantListButton: {
  89. borderRadius: 4,
  90. marginHorizontal: 3,
  91. paddingHorizontal: 10,
  92. paddingVertical: 5
  93. },
  94. knockingParticipantListDetails: {
  95. flex: 1,
  96. marginLeft: 10
  97. },
  98. knockingParticipantListEntry: {
  99. alignItems: 'center',
  100. flexDirection: 'row',
  101. padding: 10
  102. },
  103. knockingParticipantListPrimaryButton: {
  104. backgroundColor: 'rgb(3, 118, 218)'
  105. },
  106. knockingParticipantListSecondaryButton: {
  107. backgroundColor: 'transparent'
  108. },
  109. knockingParticipantListText: {
  110. color: 'white'
  111. }
  112. };