-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtips.css
More file actions
94 lines (79 loc) · 1.62 KB
/
tips.css
File metadata and controls
94 lines (79 loc) · 1.62 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
/* ---- Token-Saving Tips Section ---- */
#tips-section { background: var(--bg-alt); }
.tips-intro {
color: var(--text-dim);
font-size: .9rem;
margin-bottom: 1.5rem;
line-height: 1.7;
max-width: 680px;
}
.tips-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 1.2rem;
margin-bottom: 2rem;
}
.tip-card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 8px;
padding: 1.2rem;
display: flex;
flex-direction: column;
gap: .7rem;
transition: border-color .2s, box-shadow .2s;
}
.tip-card:hover {
border-color: var(--accent-3);
box-shadow: 0 0 12px rgba(0,204,119,.15);
}
.tip-header {
display: flex;
align-items: center;
gap: .7rem;
}
.tip-icon {
font-size: 1.6rem;
flex-shrink: 0;
}
.tip-title {
font-size: 1rem;
font-weight: 700;
color: var(--accent-3);
line-height: 1.3;
}
.tip-text {
font-size: .85rem;
color: var(--text);
line-height: 1.6;
}
.tip-detail {
font-size: .78rem;
color: var(--text-dim);
line-height: 1.6;
}
.tip-impact {
font-size: .78rem;
color: var(--text-dim);
background: var(--surface-2);
border-radius: 4px;
padding: .5rem .75rem;
line-height: 1.7;
}
.tip-impact strong { color: var(--accent-3); }
.tip-ref {
font-size: .75rem;
color: var(--accent-4);
text-decoration: none;
margin-top: auto;
}
.tip-ref:hover { text-decoration: underline; }
/* ---- Milestone reference links ---- */
.milestone-ref {
display: inline-block;
font-size: .75rem;
color: var(--accent-4);
text-decoration: none;
margin-top: .4rem;
}
.milestone-ref:hover { text-decoration: underline; }