-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathHistory.css.ts
More file actions
60 lines (51 loc) · 1.32 KB
/
History.css.ts
File metadata and controls
60 lines (51 loc) · 1.32 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
import { style } from '@vanilla-extract/css';
import { colors, fonts } from '@/style/token';
import historyBackground from '@/assets/image/history_background.svg';
export const historyContainer = style({
backgroundColor: colors.bg_black01,
});
export const layoutContainer = style({
maxWidth: '128rem',
margin: '0 auto',
paddingTop: '8.6rem',
});
export const titleContainer = style({
width: '100%',
padding: '1.4rem',
backgroundImage: colors.gradient06,
borderRadius: '12px',
color: colors.grey11,
...fonts.display02,
textAlign: 'center',
});
export const descriptionContainer = style({
marginTop: '2.3rem',
padding: '6.7rem 8.6rem',
backgroundColor: colors.grey2,
borderRadius: '12px',
color: colors.grey11,
...fonts.title01,
backgroundImage: `url(${historyBackground})`,
backgroundRepeat: 'no-repeat',
backgroundSize: 'cover',
backgroundPosition: 'center',
});
export const streakTrackerWrapper = style({
paddingTop: '7.7rem',
paddingBottom: '9.8rem',
});
export const streakTitle = style({
marginBottom: '0.4rem',
color: colors.white01,
...fonts.title01,
});
export const streakDescription = style({
marginBottom: '2.8rem',
color: colors.grey6,
...fonts.subtitle04,
});
export const progressText = style({
marginRight: '0.2rem',
color: colors.grey11,
...fonts.display05,
});