-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.css
More file actions
94 lines (77 loc) · 1.33 KB
/
index.css
File metadata and controls
94 lines (77 loc) · 1.33 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
@import "tailwindcss";
@config "../tailwind.config.ts";
:root {
font-family: "Pretendard";
line-height: 1.5;
font-weight: 400;
color-scheme: light dark;
color: black;
background-color: white;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
a {
text-decoration: inherit;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-width: 320px;
min-height: 100vh;
}
main {
background-color: white;
font-size: 14px;
width: 100vh;
max-width: 500px;
@media screen and (min-width: 500px) {
font-size: 16px;
}
}
header {
@media screen and (min-width: 360px) {
font-size: 16px;
}
@media screen and (min-width: 375px) {
font-size: 18px;
}
@media screen and (min-width: 500px) {
font-size: 18px;
}
}
input:focus {
outline: none;
}
button {
cursor: pointer;
}
@keyframes pulse-custom {
0%,
100% {
transform: scale(1);
}
50% {
transform: scale(1.5);
/* 크기를 늘리는 효과 */
}
}
.animate-pulse-custom {
animation: pulse-custom 1s infinite;
}
.delay-400 {
animation-delay: 0.4s;
}
.delay-600 {
animation-delay: 0.6s;
}
.delay-800 {
animation-delay: 0.8s;
}
@layer base {
* {
@apply transition-transform duration-200 ease-in-out;
}
}