forked from naver-ai/chacha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
67 lines (53 loc) · 1.18 KB
/
index.css
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
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--foreground-rgb: 0, 0, 0;
--background-start-rgb: 214, 219, 220;
--background-end-rgb: 255, 255, 255;
}
@media (prefers-color-scheme: dark) {
:root {
--foreground-rgb: #575757;
--background-start-rgb: #f6f8f8;
--background-end-rgb: #eef3f2;
}
}
body {
color: var(--foreground-rgb);
/*background: linear-gradient(
to bottom,
transparent,
var(--background-end-rgb)
)
var(--background-start-rgb);*/
background: #ffcf68;
}
@layer base{
body {
@apply font-Nunito;
}
p {
@apply text-lg font-light;
}
pre {
overflow-wrap: break-word;
word-break: break-word;
}
}
@layer components {
.circle-digit{
@apply rounded-full bg-white border-2 border-gray-500 w-6 h-6 text-sm font-semibold inline-block text-center items-center;
}
.icon-label-button{
@apply flex items-center transition-transform hover:scale-110 bg-slate-500 shadow-md hover:shadow-xl rounded-full px-2 pr-4 py-2 h-11;
}
.icon-label-button > span {
@apply ml-2 font-semibold text-white;
}
}
@layer utilities {
.text-balance {
text-wrap: balance;
}
}