This repository was archived by the owner on Apr 30, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyleSheet.js
More file actions
67 lines (66 loc) · 1.44 KB
/
StyleSheet.js
File metadata and controls
67 lines (66 loc) · 1.44 KB
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
import { StyleSheet } from 'react-native';
export const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#1a1f38',
},
timer: {
flex: 1,
flexDirection: 'row',
alignItems: 'flex-end',
justifyContent: 'center',
},
timerText: {
fontSize: 50,
fontFamily: 'Roboto_500Medium',
letterSpacing: 2,
},
timerTextMilli: {
fontSize: 40,
fontFamily: 'Roboto_300Light',
letterSpacing: 1
},
buttons: {
flexDirection: 'row',
justifyContent: 'center',
},
button: {
paddingVertical: 15,
paddingHorizontal: 30,
marginVertical: 20,
marginHorizontal: 20,
fontFamily: 'Montserrat_400Regular',
},
buttonBordered: {
borderColor: '#ffe500',
borderWidth: 1,
borderRadius: 25
},
laps: {
flex: 1,
backgroundColor: '#2c314f',
margin: 20,
borderRadius: 25,
},
lap: {
flexDirection: 'row',
paddingVertical: 10,
paddingHorizontal: 20,
},
lapText: {
flex: 1,
color: 'white',
fontSize: 18,
fontFamily: 'Montserrat_500Medium',
},
lapTime: {
textAlign: 'right', alignSelf: 'stretch',
fontFamily: 'Roboto_500Medium',
},
colorYellow: {
color: '#ffe500',
},
colorGray: {
color: '#777777',
},
});