-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtutorial.css
More file actions
134 lines (128 loc) · 3.13 KB
/
Copy pathtutorial.css
File metadata and controls
134 lines (128 loc) · 3.13 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/* ── Tutorial overlay styles ── */
/* ── Language toggle button ── */
.lang-btn {
display: flex;
align-items: center;
gap: 4px;
padding: 3px 8px 3px 5px;
background: #141728;
border: 1px solid #1E2545;
border-radius: 20px;
cursor: pointer;
color: #aaa;
font-size: 10px;
font-weight: 700;
letter-spacing: 0.4px;
transition: border-color 0.15s, color 0.15s, background 0.15s;
flex-shrink: 0;
height: 24px;
}
.lang-btn svg { display: block; border-radius: 2px; }
.lang-btn span { line-height: 1; }
.lang-btn:hover {
border-color: #FF3D6B;
color: #fff;
background: rgba(255,61,107,0.08);
}
.tut-help-btn {
background: #141728;
border: 1px solid #1E2545;
color: #4A5568;
border-radius: 6px;
width: 24px; height: 24px;
display: flex; align-items: center; justify-content: center;
cursor: pointer;
font-size: 11px; font-weight: 700;
transition: border-color 0.15s, color 0.15s;
flex-shrink: 0;
}
.tut-help-btn:hover { border-color: #FF3D6B; color: #FF3D6B; }
#tut-overlay {
display: none;
position: absolute;
top: 0; left: 0;
width: 100%;
z-index: 9999;
pointer-events: none;
}
#tut-overlay.active { display: block; pointer-events: all; }
.tut-mask {
position: absolute;
background: rgba(5,7,18,0.82);
transition: all 0.25s cubic-bezier(.4,0,.2,1);
}
#tut-spotlight {
position: absolute;
border: 2px solid #FF3D6B;
border-radius: 9px;
box-shadow: 0 0 0 3px rgba(255,61,107,0.18);
pointer-events: none;
transition: all 0.25s cubic-bezier(.4,0,.2,1);
}
#tut-box {
position: absolute;
background: #141728;
border: 1px solid #FF3D6B;
border-radius: 12px;
padding: 14px;
left: 8px;
right: 8px;
box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,61,107,0.2);
transition: top 0.25s cubic-bezier(.4,0,.2,1);
pointer-events: all;
}
.tut-step-badge {
font-size: 9px;
font-weight: 600;
color: #FF3D6B;
letter-spacing: 0.5px;
text-transform: uppercase;
margin-bottom: 6px;
}
.tut-title {
font-size: 13px;
font-weight: 700;
color: #fff;
margin-bottom: 5px;
line-height: 1.3;
}
.tut-desc {
font-size: 11px;
color: #718096;
line-height: 1.5;
margin-bottom: 12px;
}
.tut-desc strong { color: #CBD5E0; }
.tut-footer {
display: flex;
align-items: center;
justify-content: space-between;
gap: 6px;
}
.tut-dots {
display: flex;
gap: 4px;
align-items: center;
}
.tut-dot {
width: 5px; height: 5px;
border-radius: 50%;
background: #1E2545;
transition: background 0.2s;
}
.tut-dot.active { background: #FF3D6B; width: 14px; border-radius: 3px; }
.tut-btns { display: flex; gap: 5px; }
.tut-btn {
border: none; border-radius: 7px;
font-family: 'Inter', system-ui, sans-serif;
font-size: 11px; font-weight: 600;
cursor: pointer;
padding: 6px 11px;
transition: filter 0.15s;
display: flex; align-items: center; gap: 4px;
}
.tut-btn:hover { filter: brightness(1.1); }
.tut-btn-skip { background: #141728; border: 1px solid #1E2545; color: #4A5568; }
.tut-btn-prev { background: #141728; border: 1px solid #1E2545; color: #CBD5E0; }
.tut-btn-next { background: #FF3D6B; color: #fff; }
.tut-btn-done { background: #22C55E; color: #fff; }