-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLogin.css.ts
More file actions
104 lines (89 loc) · 1.98 KB
/
Login.css.ts
File metadata and controls
104 lines (89 loc) · 1.98 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
import { style } from "@vanilla-extract/css";
import { colors, semantic, typography } from "@/styles";
export const wrapper = style({
width: "100%",
height: "100dvh",
overflow: "hidden",
});
export const backgroundWrapper = style({
position: "relative",
width: "100%",
height: "100%",
backgroundImage: "url(\"/images/login-background.webp\")",
backgroundSize: "cover",
backgroundRepeat: "no-repeat",
backgroundPosition: "center",
display: "flex",
flexDirection: "column",
justifyContent: "space-between",
alignItems: "center",
});
export const textButton = style({
color: semantic.text.neutral,
});
export const logoWrapper = style({
width: "100%",
height: "100%",
display: "flex",
flexDirection: "column",
justifyContent: "center",
alignItems: "center",
gap: "2.4rem",
});
export const logoIcon = style({
width: "7.7rem",
height: "4rem",
color: colors.redOrange[50],
});
export const gradientOverlay = style({
position: "absolute",
top: "60%",
left: 0,
width: "100%",
height: "50%",
background: `linear-gradient(
180deg,
rgba(255, 245, 214, 0) 0%,
rgba(255, 246, 218, 1) 40%,
rgba(255, 255, 255, 1) 100%
)`,
zIndex: 0,
});
export const contentWrapper = style({
zIndex: 1,
width: "100%",
display: "flex",
flexDirection: "column",
justifyContent: "center",
alignItems: "center",
textAlign: "center",
gap: "2.1rem",
});
export const titleWrapper = style({
display: "flex",
flexDirection: "column",
gap: "0.4rem",
});
export const title = style({
...typography.title1Bd,
});
export const subtitle = style({
...typography.body1Md,
color: semantic.text.alternative,
});
export const kakaoButtonWrapper = style({
width: "100%",
padding: "4rem 2rem",
});
export const kakaoButton = style({
backgroundColor: "#FAE300",
gap: "0.8rem",
});
export const kakaoLogo = style({
width: "2.4rem",
height: "2.4rem",
});
export const kakaoText = style({
...typography.body1Sb,
color: semantic.text.normal,
});