-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobals.css
More file actions
103 lines (91 loc) · 2.14 KB
/
Copy pathglobals.css
File metadata and controls
103 lines (91 loc) · 2.14 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
@source "../../../../packages/components";
@source "../../node_modules/@blocknote/shadcn";
@import "@linkyboard/tailwind-config";
@import "@xyflow/react/dist/style.css";
@plugin "@tailwindcss/typography";
/* 스티커 연결점 */
div.customHandle {
opacity: 0;
transition: all 0.2s ease-in-out;
width: 12px;
height: 12px;
border-radius: 50%;
position: absolute;
background-color: #fff;
border: 2px solid var(--primary);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* hover 시 연결점 표시 */
.group:hover .customHandle {
opacity: 1;
}
/* Tiptap 에디터 */
.ProseMirror {
height: 100%;
overflow-y: auto;
}
.tiptap {
padding: 0;
}
/* BlockNote 에디터 */
.bn-editor {
padding: 0 !important;
background-color: var(--background) !important;
color: var(--foreground) !important;
outline: none !important;
}
.bn-toggle-button,
.bn-toggle-add-block-button {
&:hover {
background-color: var(--secondary) !important;
}
}
.node-toggleListItem:has(+ .bn-block-group) svg {
fill: var(--foreground);
}
@utility bg-glass {
background-color: transparent;
-webkit-backdrop-filter: blur(25px);
backdrop-filter: blur(25px);
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 60px;
}
@utility bg-radial-gradient-blue {
background: radial-gradient(
50% 50% at 50% 50%,
#c0d9ff 0%,
rgba(192, 217, 255, 0.8) 46.63%,
rgba(192, 217, 255, 0) 100%
);
}
@utility bg-radial-gradient-purple {
background: radial-gradient(
50% 50% at 50% 50%,
rgba(225, 217, 253, 0.8) 0%,
rgba(225, 217, 253, 0.8) 46.63%,
rgba(225, 216, 255, 0) 100%
);
/* background: radial-gradient(
50% 50% at 50% 50%,
#ccbeff 0%,
rgba(204, 190, 255, 0.8) 46.63%,
rgba(225, 216, 255, 0) 100%
); */
}
@utility bg-radial-gradient-duo {
background:
radial-gradient(
50% 50% at 50% 50%,
#ccbeff 0%,
rgba(204, 190, 255, 0.8) 46.63%,
rgba(225, 216, 255, 0) 100%
),
radial-gradient(
55.95% 57.37% at 29.97% 32%,
rgba(163, 137, 255, 0.7) 0%,
rgba(163, 137, 255, 0.35) 38.72%,
rgba(255, 0, 4, 0.5) 100%
);
filter: blur(120px);
opacity: 0.9;
}