-
Notifications
You must be signed in to change notification settings - Fork 2
/
styleSheet.js
58 lines (57 loc) · 1.03 KB
/
styleSheet.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import React, { Component } from 'react';
import { AppRegistry,
Text,
View,
StyleSheet
} from 'react-native';
const styles = StyleSheet.create({
button: {
backgroundColor: '#F25F5C',
borderRadius: 25,
borderColor: 'azure',
borderWidth: 2
},
wholeScreen: {
backgroundColor: '#1aa3ff',
flex: 3
},
container: {
marginTop: 100,
},
buttonContainer: {
paddingLeft: 15,
paddingRight: 15,
paddingTop: 40,
width: '100%',
justifyContent: 'center',
alignItems: 'center'
},
title: {
color: 'azure',
fontWeight: 'bold',
fontSize: 30,
textAlign: 'center'
},
subtitle: {
color: 'azure',
fontWeight: 'bold',
fontSize: 18,
textAlign: 'center',
paddingTop: 10,
},
buttonText: {
color: 'azure',
fontWeight: 'bold',
fontSize: 18,
textAlign: 'center'
},
disclaimerText: {
color: 'azure',
fontWeight: 'bold',
fontSize: 14,
textAlign: 'center',
paddingTop: 10,
paddingLeft: 25,
paddingRight: 25,
}
});