style.js 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. module.exports = {
  2. container: {
  3. width: '100%',
  4. height: '100%',
  5. borderRadius: 12,
  6. marginTop:30
  7. },
  8. header: {
  9. width: '100%',
  10. height: '10%',
  11. flexDirection: 'column',
  12. alignItems: 'center',
  13. backgroundColor: '#ffffff00',
  14. borderBottomWidth: 0.5,
  15. borderColor: 'rgba(0, 0, 0, 0)',
  16. },
  17. title: {
  18. width: '10%',
  19. height: '100%',
  20. fontSize: 35,
  21. lineHeight: 80,
  22. textAlign: 'center',
  23. fontWeight: 'bold',
  24. borderBottomWidth: 6,
  25. borderColor: '#ffffff',
  26. },
  27. rankList: {
  28. width: '100%',
  29. height: '90%',
  30. backgroundColor: '#ffffff00',
  31. },
  32. list: {
  33. width: '100%',
  34. height: '88%',
  35. backgroundColor: '#ffffff00',
  36. marginTop: 30,
  37. },
  38. listTips: {
  39. width: '100%',
  40. height: '12%',
  41. lineHeight: 90,
  42. textAlign: 'center',
  43. fontSize: 25,
  44. color: 'rgba(0,0,0,0.5)',
  45. backgroundColor: '#ffffff00',
  46. // borderRadius: 10,
  47. // borderWidth: 1,
  48. // borderColor: 'rgba(0, 0, 0, 1)',
  49. },
  50. listItem: {
  51. backgroundColor: '#ffffff00',
  52. width: '100%',
  53. height: '18%',
  54. flexDirection: 'row',
  55. alignItems: 'center',
  56. justifyContent: 'space-between',
  57. },
  58. listItemOld: {
  59. backgroundColor: '#ffffff00',
  60. },
  61. listItemUserData: {
  62. width: '70%',
  63. height: '100%',
  64. flexDirection: 'row',
  65. alignItems: 'center',
  66. justifyContent: 'flex-start',
  67. marginLeft:10,
  68. },
  69. listItemScore: {
  70. width: '20%',
  71. height: 100,
  72. fontSize: 33,
  73. fontWeight: 'bold',
  74. paddingRight: 200,
  75. lineHeight: 100,
  76. textAlign: 'center',
  77. },
  78. listItemNum: {
  79. width: 100,
  80. height: 80,
  81. fontSize: 30,
  82. fontWeight: 'bold',
  83. color: '#452E27',
  84. lineHeight: 100,
  85. textAlign: 'center',
  86. },
  87. listHeadImg: {
  88. borderRadius: 6,
  89. width: 70,
  90. height: 70,
  91. marginLeft: 30,
  92. },
  93. listItemName: {
  94. width: 210,
  95. height: 100,
  96. fontSize: 30,
  97. lineHeight: 100,
  98. marginLeft: 30,
  99. },
  100. rankTitle:{
  101. width:79,
  102. height:64,
  103. margineRight:50,
  104. },
  105. rankTitle1:{
  106. width:45,
  107. height:48,
  108. margineRight:74,
  109. }
  110. };