-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
132 lines (111 loc) · 3.13 KB
/
styles.css
File metadata and controls
132 lines (111 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
/* Base note container */
blockquote[class*="remark-note"] {
/* Reset blockquote defaults */
margin: 1.5rem 0;
padding: 1.25rem;
quotes: none;
font-weight: normal;
font-style: normal;
/* Custom note styles */
border-radius: 0.5rem;
border: 1px solid;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
transition: all 0.2s ease-in-out;
}
/* Header styles */
[class*="remark-note-header"] {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: 1rem;
}
/* Icon styles */
[class*="remark-note-icon"] {
display: flex;
align-items: center;
justify-content: center;
font-size: 1.25rem;
width: 1.25rem;
height: 1.25rem;
border-radius: 0.5rem;
}
[class*="remark-note-icon"]>svg {
width: auto;
height: 100%;
fill: none;
}
/* Title styles */
[class*="remark-note-title"] {
font-weight: 700;
font-size: 0.85rem;
letter-spacing: 0.025em;
line-height: 0.85rem;
text-transform: uppercase;
}
/* Content styles */
[class*="remark-note-content"] {
color: #1F2937;
line-height: 1.625;
font-size: 1rem;
/* margin-left: 2.75rem; */
}
/* Note type: Note (Light Blue) */
blockquote[class*="remark-note-note"] {
background-color: #318CE710;
border-color: #318CE7;
box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.1), 0 2px 4px -2px rgba(59, 130, 246, 0.1);
}
blockquote[class*="remark-note-note"] [class*="remark-note-icon"] {
stroke: #318CE7;
}
blockquote[class*="remark-note-note"] [class*="remark-note-title"] {
color: #318CE7;
}
/* Note type: Important (Purple) */
blockquote[class*="remark-note-important"] {
background-color: #EF9B0F10;
border-color: #EF9B0F;
box-shadow: 0 4px 6px -1px rgba(147, 51, 234, 0.1), 0 2px 4px -2px rgba(147, 51, 234, 0.1);
}
blockquote[class*="remark-note-important"] [class*="remark-note-icon"] {
color: #EF9B0F;
}
blockquote[class*="remark-note-important"] [class*="remark-note-title"] {
color: #EF9B0F;
}
/* Note type: Quote (Gray) */
blockquote[class*="remark-note-quote"] {
background-color: #8C92AC10;
border-color: #8C92AC;
box-shadow: 0 4px 6px -1px rgba(75, 85, 99, 0.1), 0 2px 4px -2px rgba(75, 85, 99, 0.1);
}
blockquote[class*="remark-note-quote"] [class*="remark-note-icon"] {
stroke: #8C92AC;
}
blockquote[class*="remark-note-quote"] [class*="remark-note-title"] {
color: #8C92AC;
}
/* Note type: Bonus (Pink) */
blockquote[class*="remark-note-bonus"] {
background-color: #9966CC10;
border-color: #9966CC;
box-shadow: 0 4px 6px -1px rgba(219, 39, 119, 0.1), 0 2px 4px -2px rgba(219, 39, 119, 0.1);
}
blockquote[class*="remark-note-bonus"] [class*="remark-note-icon"] {
stroke: #9966CC;
}
blockquote[class*="remark-note-bonus"] [class*="remark-note-title"] {
color: #9966CC;
}
/* Note type: Tip (Light Blue - same as Note) */
blockquote[class*="remark-note-tip"] {
background-color: #7ccf0010;
border-color: #7ccf00;
box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.1), 0 2px 4px -2px rgba(59, 130, 246, 0.1);
}
blockquote[class*="remark-note-tip"] [class*="remark-note-icon"]>svg {
stroke: #7ccf00;
}
blockquote[class*="remark-note-tip"] [class*="remark-note-title"] {
color: #7ccf00;
}