-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathstyles.ts
77 lines (76 loc) · 1.9 KB
/
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
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
import { ThemeUIStyleObject } from 'theme-ui'
export const styles: Record<
| 'slideContainer'
| 'slideTitle'
| 'slideSubtitle'
| 'counterText'
| 'availableBills'
| 'billImage'
| 'image'
| 'buttonContainer'
| 'learnMoreButton',
ThemeUIStyleObject
> = {
slideContainer: {
width: '100%',
flexDirection: 'column',
padding: ['0 10px', '0 10px', '0'],
maxWidth: ['325px', '325px', 'none'],
},
slideTitle: {
fontSize: ['45px', '45px', '64px'],
lineHeight: ['48px', '48px', '80px'],
fontWeight: 700,
background: 'var(--theme-ui-colors-home-title)',
webkitBackgroundClip: 'text',
webkitTextFillColor: 'transparent',
backgroundClip: 'text',
textFillColor: 'transparent',
maxWidth: ['235px', '235px', '326px'],
},
slideSubtitle: {
marginTop: '25px',
fontWeight: 500,
lineHeight: ['15px', '15px', '25px'],
fontSize: ['12px', '12px', '18px'],
maxWidth: ['325px', '325px', 'none'],
},
counterText: {
lineHeight: ['15px', '15px', '25px'],
fontSize: ['12px', '12px', '18px'],
fontWeight: 700,
},
availableBills: {
fontWeight: 300,
fontSize: '12px',
lineHeight: '18px',
textTransform: 'uppercase',
marginRight: '10px',
},
billImage: {
width: '100%',
height: '182px',
display: ['flex', 'none', 'none'],
marginTop: ['25px', '25px', 0],
justifyContent: ['center', 'flex-start', 'flex-start'],
},
image: {
borderRadius: '6px',
width: '100%',
height: '100%',
maxWidth: ['325px', '325px', 'none'],
backgroundSize: 'contain',
backgroundRepeat: 'no-repeat',
},
buttonContainer: {
width: '100%',
marginTop: ['20px', '20px', '30px'],
justifyContent: ['space-around', 'space-around', 'flex-start'],
},
learnMoreButton: {
marginRight: ['0', '0', '20px'],
background: 'background',
fontSize: ['16px', '14px', '18px'],
minWidth: '137px',
},
}