Skip to content
Snippets Groups Projects
index.js 2.08 KiB
Newer Older
tina's avatar
tina committed
import { StyleSheet } from 'react-native'

export const primaryColor = '#ff7e5f'
export const secondaryColor = '#351c4d'

export default StyleSheet.create({
Julia Friesel's avatar
Julia Friesel committed
  container: {
    justifyContent: 'center',
    alignItems: 'center'
  },
  welcome: {
    fontSize: 20,
    margin: 30,
    textAlign: 'center',
    textAlignVertical: 'center'
  },
  dateHeader: {
    fontSize: 18,
    fontWeight: 'bold',
    color: 'white',
    textAlign: 'center',
  },
  cycleDayNumber: {
    fontSize: 15,
    color: 'white',
    textAlign: 'center',
    marginLeft: 15
  },
  symptomDayView: {
    fontSize: 20,
    textAlignVertical: 'center'
  },
  symptomBoxImage: {
    width: 50,
    height: 50
  },
  radioButton: {
    fontSize: 18,
Julia Friesel's avatar
Julia Friesel committed
    margin: 8,
    textAlign: 'center',
    textAlignVertical: 'center'
  },
  symptomBoxesView: {
    flexDirection: 'row',
    flexWrap: 'wrap',
    justifyContent: 'space-evenly'
  },
  symptomBox: {
    borderColor: secondaryColor,
    borderStyle: 'solid',
    borderWidth: 1,
    borderRadius: 10,
    justifyContent: 'center',
    alignItems: 'center',
    marginTop: '20%',
    minWidth: 100,
    minHeight: 100
tina's avatar
tina committed
  },
  symptomEditRow: {
    justifyContent: 'space-between',
    marginBottom: 10,
tina's avatar
tina committed
  },
  symptomViewRowInline: {
    flexDirection: 'row',
    justifyContent: 'space-between',
    marginBottom: 10,
    alignItems: 'center',
    height: 50
tina's avatar
tina committed
  },
  cycleDayDateView: {
    backgroundColor: primaryColor,
    padding: 10,
    flexDirection: 'row',
tina's avatar
tina committed
    justifyContent: 'center',
    alignItems: 'center'
  },
  homeButtons: {
    marginHorizontal: 15
tina's avatar
tina committed
  },
  homeButton: {
    marginBottom: 15
tina's avatar
tina committed
  },
  temperatureTextInput: {
    width: 80,
    textAlign: 'center',
    fontSize: 20
  },
  actionButtonRow: {
    flexDirection: 'row',
    justifyContent: 'space-evenly',
    marginTop: 50
tina's avatar
tina committed
  },
  symptomEditButton: {
    width: 130
Julia Friesel's avatar
Julia Friesel committed
  },
  radioButtonRow: {
    marginTop: 15,
    marginLeft: 'auto',
    marginRight: 'auto'
  },
  stats: {
    fontSize: 18,
    margin: 30,
    textAlign: 'left',
    textAlignVertical: 'center'
  },
  menuLabel: {
    fontSize: 15,
    color: 'white'
  },