-
Notifications
You must be signed in to change notification settings - Fork 5
/
styles.js
61 lines (59 loc) · 1.15 KB
/
styles.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
import { StyleSheet } from 'react-360';
const styles = StyleSheet.create({
audioPanel: {
flexDirection: 'row',
},
audioImage: {
height: 50,
width: 50
},
infoPanel: {
width: 400,
height: 400,
opacity: 0.8,
backgroundColor: 'rgb(255, 200, 50)',
borderColor: 'rgb(255, 255, 255)',
borderWidth: 5,
borderRadius: 20,
},
buttonPanel: {
width: 400,
height: 400,
opacity: 0.8,
backgroundColor: 'rgb(255, 200, 50)',
borderColor: 'rgb(255, 255, 255)',
borderWidth: 5,
borderRadius: 30,
flexDirection: 'column',
justifyContent: 'space-around',
alignItems: 'center'
},
hover: {
height: 60,
width: 200,
backgroundColor: '#0073B7',
borderColor: 'rgb(255,255,255)',
borderWidth: 5
},
button: {
height: 60,
width: 200,
backgroundColor: 'rgb(0,0,0)',
borderColor: 'rgb(255,255,255)',
borderWidth: 5,
},
buttonText: {
fontSize: 30,
textAlign: 'center',
},
panelHeader: {
fontSize: 40,
fontWeight: 'bold',
textAlign: 'center'
},
infoText: {
fontWeight: 'bold',
textAlign: 'center'
}
});
export default styles;