11body {
2- font-family : Arial, sans-serif;
3- padding : 10px ;
4- width : 300px ;
2+ font-family : 'Segoe UI' , sans-serif;
3+ margin : 0 ;
4+ padding : 20px ;
5+ width : 320px ;
6+ height : auto;
7+ background : # 262626 ;
8+ color : # f0f0f0 ;
9+ border-radius : 16px ;
10+ box-shadow : 0 8px 24px rgba (0 , 0 , 0 , 0.5 );
11+ border : 1px solid rgba (255 , 255 , 255 , 0.1 );
512}
613
14+
715h3 {
816 margin-top : 0 ;
17+ color : # fff ;
918}
1019
1120# getHelp {
12- padding : 10px ;
13- background : # 4CAF50 ;
14- color : white;
21+ background : rgba (140 , 100 , 0 , 0.15 );
22+ color : # FFA726 ;
23+ font-weight : 500 ;
24+ font-size : 0.80rem ;
25+ padding : 16px 18px ;
1526 border : none;
27+ border-radius : 12px ;
1628 width : 100% ;
17- border-radius : 5px ;
29+ margin : 0 auto 15px ;
30+ display : block;
1831 cursor : pointer;
19- margin-bottom : 10 px ;
32+ transition : background 0.5 s ease-in-out ;
2033}
2134
22- # output {
23- white-space : pre-wrap;
35+ # getHelp : hover {
36+ background : rgba (255 , 162 , 24 , 0.15 );
37+ transform : scale (1.01 );
2438}
2539
40+
2641ul {
2742 padding-left : 20px ;
2843}
2944
3045li {
3146 margin-bottom : 5px ;
47+ }
48+
49+ /* Typography for rendered markdown */
50+ # output h1 {
51+ font-size : 1.4rem ;
52+ margin : 1rem 0 0.5rem ;
53+ font-weight : bold;
54+ color : # 000000 ;
55+ }
56+
57+ # output h2 {
58+ font-size : 1.2rem ;
59+ margin : 1rem 0 0.5rem ;
60+ font-weight : bold;
61+ color : # ffffff ;
62+ }
63+
64+ # output h3 {
65+ font-size : 1.05rem ;
66+ margin : 1rem 0 0.5rem ;
67+ font-weight : 600 ;
68+ color : # ffffff ;
69+ }
70+
71+ # output p {
72+ font-size : 0.95rem ;
73+ line-height : 1.5 ;
74+ margin : 0.5rem 0 ;
75+ color : # f2f2f2 ;
76+ }
77+
78+ # output ul {
79+ padding-left : 1.2rem ;
80+ margin : 0.5rem 0 ;
81+ font-size : 0.95rem ;
82+ color : # e6e6e6 ;
83+ }
84+
85+ # output li {
86+ margin-bottom : 0.4rem ;
87+ line-height : 1.4 ;
88+ }
89+
90+ /* Optional: style emphasis */
91+ # output em {
92+ font-style : italic;
93+ color : # ffd1dc ;
94+ }
95+
96+ # output strong {
97+ font-weight : bold;
98+ color : # ffffff ;
99+ }
100+
101+ /* For inline code */
102+ # output code {
103+ font-family : 'Courier New' , monospace;
104+ background-color : rgba (255 , 255 , 255 , 0.1 );
105+ padding : 2px 5px ;
106+ border-radius : 4px ;
107+ }
108+
109+ /* For code blocks */
110+ # output pre {
111+ background-color : rgba (255 , 255 , 255 , 0.08 );
112+ padding : 10px ;
113+ border-radius : 8px ;
114+ overflow-x : auto;
115+ font-size : 0.9rem ;
116+ margin : 0.5rem 0 ;
117+ }
118+
119+ ::-webkit-scrollbar {
120+ width : 6px ;
121+ }
122+
123+ ::-webkit-scrollbar-thumb {
124+ background-color : rgba (255 , 255 , 255 , 0.2 );
125+ border-radius : 10px ;
126+ }
127+
128+ /* Loader spinner */
129+ .spinner {
130+ border : 4px solid rgba (255 , 255 , 255 , 0.2 );
131+ border-top : 4px solid white;
132+ border-radius : 50% ;
133+ width : 28px ;
134+ height : 28px ;
135+ animation : spin 1s linear infinite;
136+ margin : auto;
137+ }
138+
139+ @keyframes spin {
140+ 0% {
141+ transform : rotate (0deg );
142+ }
143+
144+ 100% {
145+ transform : rotate (360deg );
146+ }
32147}
0 commit comments