-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathestilo.js
122 lines (120 loc) · 2.2 KB
/
estilo.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
import { StyleSheet, StatusBar } from 'react-native';
const estilos = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#070082',
},
caixa: {
margin: 15,
height: 40,
backgroundColor: 'white',
fontSize: 18,
borderRadius: 8,
textDecorationStyle: 'none',
width: 315,
border: 'none',
outline: 'none',
padding: 10,
},
caixaHash: {
marginTop: 15,
marginBottom: 15,
marginRight: 15,
marginLeft: 5,
height: 40,
backgroundColor: 'white',
fontSize: 18,
borderRadius: 8,
textDecorationStyle: 'none',
width: 150,
border: 'none',
outline: 'none',
padding: 10,
},
menuStyle: {
backgroundColor: 'green',
borderWidth: 1,
borderBottomColor: 'white',
color: 'red',
},
title: {
color: 'white',
fontSize: 20,
textAlign: 'center',
},
rowStyle: {
flexDirection: 'row',
padding: 10,
},
columnStyle: {
flexDirection: 'column',
},
botao: {
backgroundColor: '#01837D',
width: 75,
alignItems: 'center',
justifyContent: 'center',
borderRadius: 8,
height: 40,
marginRight: 5,
},
texto: {
color: 'white',
fontSize: 15,
},
titleCard: {
color: 'black',
fontSize: 25,
fontFamily: 'Roboto',
},
textoCard: {
color: 'black',
fontSize: 15,
marginTop: 15,
fontFamily: 'Roboto',
},
card: {
backgroundColor: 'white',
borderRadius: 16,
borderWidth: 0,
},
containerHome: {
flex: 1,
flexDirection: 'column',
justifyContent: 'center',
height: '100%',
width: '100%',
backgroundColor: 'white',
alignItems: 'center',
marginTop: 5,
},
botaoHome: {
flexDirection: 'row',
backgroundColor: '#01837D',
width: '95%',
alignItems: 'center',
justifyContent: 'center',
borderRadius: 8,
height: 120,
padding: 15,
marginBottom: 15,
},
textoHome: {
textAlign: 'center',
color: 'white',
fontSize: 20,
width: '45%',
},
titleCards: {
fontSize: '36px',
color: '#150940',
},
image: {
flex: 1,
width: "100%",
resizeMode: 'contain'
}
});
export default estilos;