-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.ts
46 lines (45 loc) · 1014 Bytes
/
styles.ts
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
import {
StyleSheet,
Dimensions
} from 'react-native';
export default StyleSheet.create({
containerPrincipal: {
backgroundColor:'#0572f5'
},
imagemCiruclar: {
borderRadius: Math.round(Dimensions.get('window').width + Dimensions.get('window').height) / 2,
width: Dimensions.get('window').width * 0.45,
height: Dimensions.get('window').width * 0.45,
backgroundColor:'#f00',
justifyContent: 'center',
alignItems: 'center'
},
containerTexto: {
marginTop:'30%'
},
nomePalestrante: {
fontSize:28,
fontWeight:'bold',
textAlign:'center'
},
texto: {
marginTop:'2%',
marginLeft:'23.5%',
fontSize:16
},
containerImagem: {
alignItems: 'center',
justifyContent: 'center',
position: 'absolute',
left: 0,
top: 0,
width: '100%',
height: '50%'
},
image: {
width:200,
height:200,
marginTop:30,
marginLeft:'25%'
}
});